diff options
author | Bake Timmons <b3timmons@speedymail.org> | 2012-01-15 10:56:53 -0500 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-02-04 00:10:13 +0100 |
commit | df0a100250a8eea3bfb6b8999cad54d01633567c (patch) | |
tree | 704107d59a4104639ce129b3ad1288085e394be7 /doc/ref/api-utility.texi | |
parent | e7f7691f5f5c2ecc2b6b828322e6bf3ccb130622 (diff) | |
download | guile-df0a100250a8eea3bfb6b8999cad54d01633567c.tar.gz |
Make notation for Scheme repeated arguments more consistent in manual.
* doc/ref/api-compound.texi
* doc/ref/api-control.texi
* doc/ref/api-data.texi
* doc/ref/api-debug.texi
* doc/ref/api-evaluation.texi
* doc/ref/api-macros.texi
* doc/ref/api-memory.texi
* doc/ref/api-modules.texi
* doc/ref/api-procedures.texi
* doc/ref/api-regex.texi
* doc/ref/api-scheduling.texi
* doc/ref/api-utility.texi
* doc/ref/goops.texi
* doc/ref/match.texi
* doc/ref/misc-modules.texi
* doc/ref/posix.texi
* doc/ref/r6rs.texi
* doc/ref/scheme-using.texi
* doc/ref/srfi-modules.texi
* doc/ref/sxml-match.texi: Make notation for Scheme repeated arguments more
consistent in manual.
Diffstat (limited to 'doc/ref/api-utility.texi')
-rw-r--r-- | doc/ref/api-utility.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ref/api-utility.texi b/doc/ref/api-utility.texi index ba6139f8c..9ab1eeea5 100644 --- a/doc/ref/api-utility.texi +++ b/doc/ref/api-utility.texi @@ -583,11 +583,11 @@ value of this procedure is not specified. Convert the procedure list of @var{hook} to a list. @end deffn -@deffn {Scheme Procedure} run-hook hook . args +@deffn {Scheme Procedure} run-hook hook arg @dots{} @deffnx {C Function} scm_run_hook (hook, args) -Apply all procedures from the hook @var{hook} to the arguments -@var{args}. The order of the procedure application is first to -last. The return value of this procedure is not specified. +Apply all procedures from the hook @var{hook} to the arguments @var{arg} +@enddots{}. The order of the procedure application is first to last. +The return value of this procedure is not specified. @end deffn If, in C code, you are certain that you have a hook object and well |