From b1451ad859183ae48c624d19ec144306bd2d3e3a Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 1 Oct 2014 18:57:44 -0400 Subject: [PATCH] docs: Fix documented return type of 'scm_c_export'. Fixes . Reported and fixed by Alexei Matveev . * doc/ref/api-modules.texi (Accessing Modules from C): Change documented return type of 'scm_c_export' to 'void' to reflect reality. * THANKS: Add Alexei Matveev to the fixes section. --- THANKS | 1 + doc/ref/api-modules.texi | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/THANKS b/THANKS index 4038d5eeb..1cc749aab 100644 --- a/THANKS +++ b/THANKS @@ -127,6 +127,7 @@ For fixes or providing information which led to a fix: Gregory Marton Kjetil S. Matheussen Antoine Mathys + Alexei Matveev Patrick McCarty Dan McMahill Roger Mc Murtrie diff --git a/doc/ref/api-modules.texi b/doc/ref/api-modules.texi index e9d7aecf3..4c46f2984 100644 --- a/doc/ref/api-modules.texi +++ b/doc/ref/api-modules.texi @@ -1066,7 +1066,7 @@ module, as with @code{(use-modules @var{name})}. The name is interpreted as for @code{scm_c_define_module}. @end deftypefn -@deftypefn {C Function} SCM scm_c_export ({const char *}@var{name}, ...) +@deftypefn {C Function} void scm_c_export ({const char *}@var{name}, ...) Add the bindings designated by @var{name}, ... to the public interface of the current module. The list of names is terminated by @code{NULL}.