1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

Docstring clarification for scm_registered_modules.

This commit is contained in:
Marius Vollmer 2000-03-12 15:24:36 +00:00
parent 2afe9d0e3e
commit f15a06bfc9

View file

@ -177,9 +177,9 @@ SCM_DEFINE (scm_registered_modules, "c-registered-modules", 0, 0, 0,
(), (),
"Return a list of the object code modules that have been imported into\n" "Return a list of the object code modules that have been imported into\n"
"the current Guile process. Each element of the list is a pair whose\n" "the current Guile process. Each element of the list is a pair whose\n"
"car is the name of the module (as it might be used by\n" "car is the name of the module, and whose cdr is the function handle\n"
"@code{use-modules}, for instance), and whose cdr is the function handle\n" "for that module's initializer function. The name is the string that\n"
"for that module's initializer function.") "has been passed to scm_register_module_xxx.")
#define FUNC_NAME s_scm_registered_modules #define FUNC_NAME s_scm_registered_modules
{ {
SCM res; SCM res;