1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

docs: Fix documented return type of 'scm_c_export'.

Fixes <http://bugs.gnu.org/17869>.
Reported and fixed by Alexei Matveev <alexei.matveev@gmail.com>.

* 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.
This commit is contained in:
Mark H Weaver 2014-10-01 18:57:44 -04:00
parent 3157d45503
commit b1451ad859
2 changed files with 2 additions and 1 deletions

1
THANKS
View file

@ -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

View file

@ -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}.