diff options
author | Andy Wingo <wingo@pobox.com> | 2010-12-17 13:27:43 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-12-17 13:27:43 +0100 |
commit | cdab9fc6250ffa86467156d50b88834c28922b16 (patch) | |
tree | 5d6f7118d71b2ba3535e8feda03a3e96f64dd788 /doc/ref/scheme-using.texi | |
parent | 626e36e5cbfb8a251c647d44116bd2b34bc88106 (diff) | |
download | guile-cdab9fc6250ffa86467156d50b88834c28922b16.tar.gz |
add ,reload meta-command and document it and reload-module
* module/ice-9/boot-9.scm (reload-module): Add docstring.
* module/system/repl/command.scm (reload): New meta-command.
* doc/ref/scheme-using.texi (Module Commands): Document the ,reload
meta-command.
* doc/ref/api-modules.texi (Module System Reflection): Document
reload-module.
Diffstat (limited to 'doc/ref/scheme-using.texi')
-rw-r--r-- | doc/ref/scheme-using.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/ref/scheme-using.texi b/doc/ref/scheme-using.texi index 7700cbe9b..126b84590 100644 --- a/doc/ref/scheme-using.texi +++ b/doc/ref/scheme-using.texi @@ -223,6 +223,10 @@ Import modules / List those imported. Load a file in the current module. @end deffn +@deffn {REPL Command} reload [module] +Reload the given module, or the current module if none was given. +@end deffn + @deffn {REPL Command} binding List current bindings. @end deffn |