diff options
author | Jason Earl <jearl@notengoamigos.org> | 2013-03-10 22:29:18 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-03-10 22:29:18 +0100 |
commit | a4b4fbbdaa3542e35ea436179200d071b57ff1ca (patch) | |
tree | bb2bbf36dac2a0e8ebe3201b77864a9beea4d673 /doc/ref/compiler.texi | |
parent | e9381f58d1b0c9d8882328efecf938b45817e3dd (diff) | |
download | guile-a4b4fbbdaa3542e35ea436179200d071b57ff1ca.tar.gz |
excise use of "iff" in the manual
* doc/ref/api-compound.texi:
* doc/ref/api-control.texi:
* doc/ref/api-data.texi:
* doc/ref/api-macros.texi:
* doc/ref/api-modules.texi:
* doc/ref/api-procedures.texi:
* doc/ref/api-scheduling.texi:
* doc/ref/api-smobs.texi:
* doc/ref/api-undocumented.texi:
* doc/ref/api-utility.texi:
* doc/ref/compiler.texi:
* doc/ref/intro.texi:
* doc/ref/scheme-using.texi:
* doc/ref/sxml.texi:
* doc/ref/web.texi: Change uses of "iff" to "if, otherwise". Fixes bug
10302.
Diffstat (limited to 'doc/ref/compiler.texi')
-rw-r--r-- | doc/ref/compiler.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ref/compiler.texi b/doc/ref/compiler.texi index 400814080..bfc633e57 100644 --- a/doc/ref/compiler.texi +++ b/doc/ref/compiler.texi @@ -580,9 +580,9 @@ variables. @var{vars} is a list of @code{(@var{name} @var{type} program's metadata and do not form part of a program's code path. @end deftp @deftp {Scheme Variable} <glil-mv-bind> vars rest -A multiple-value binding of the values on the stack to @var{vars}. Iff -@var{rest} is true, the last element of @var{vars} will be treated as -a rest argument. +A multiple-value binding of the values on the stack to @var{vars}. If +@var{rest} is true, the last element of @var{vars} will be treated as a +rest argument. In addition to pushing a binding annotation on the stack, like @code{<glil-bind>}, an expression is emitted at compilation time to @@ -789,7 +789,7 @@ objcode)} module. @deffn {Scheme Procedure} objcode? obj @deffnx {C Function} scm_objcode_p (obj) -Returns @code{#f} iff @var{obj} is object code, @code{#f} otherwise. +Returns @code{#f} if @var{obj} is object code, @code{#f} otherwise. @end deffn @deffn {Scheme Procedure} bytecode->objcode bytecode |