diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-16 00:09:26 -0400 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-08-07 11:41:01 +0200 |
commit | 313b1c4469db8ead7b4c50611ce4504774ac657e (patch) | |
tree | 23778f19de008a4ddd2571713d142b6c7a0322fd /doc/ref/api-macros.texi | |
parent | 6708acbf66fb7e92b81853b34a183e93aebbbd2a (diff) | |
download | guile-313b1c4469db8ead7b4c50611ce4504774ac657e.tar.gz |
Fix a few typos in the manual.
Fixes <https://bugs.gnu.org/30276>.
Reported by Matt Wette <matt.wette@gmail.com>.
* doc/ref/api-macros.texi (Macro Expansion)
doc/ref/vm.texi (Procedure Call and Return Instructions): Fix typos.
Diffstat (limited to 'doc/ref/api-macros.texi')
-rw-r--r-- | doc/ref/api-macros.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-macros.texi b/doc/ref/api-macros.texi index ef0621415..2e0036932 100644 --- a/doc/ref/api-macros.texi +++ b/doc/ref/api-macros.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000-2004, 2009-2015 +@c Copyright (C) 1996, 1997, 2000-2004, 2009-2015, 2018 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -1280,7 +1280,7 @@ macros will be @code{eval}'d in the top-level environment. In this way @code{(macroexpand @var{foo})} is equivalent to @code{(macroexpand @var{foo} 'e '(eval))}. The second argument is the -mode (@code{'e} for ``eval'') and the second is the +mode (@code{'e} for ``eval'') and the third is the eval-syntax-expanders-when parameter (only @code{eval} in this default setting). |