Mercurial > hg > xemacs-beta
comparison man/lispref/variables.texi @ 4485:57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
2008-07-26 Aidan Kehoe <kehoea@parhasard.net>
* lispref/variables.texi (Extent):
Correct a misspelling of macros, add a needed space. Thank you
John Paul Wallington, thank you Stephen Turnbull.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 26 Jul 2008 11:33:24 +0200 |
parents | effcad8baac1 |
children | 755ae5b97edb |
comparison
equal
deleted
inserted
replaced
4484:d6e2e2e819d7 | 4485:57db42ba54fb |
---|---|
893 @end example | 893 @end example |
894 | 894 |
895 @cindex closures not available | 895 @cindex closures not available |
896 Some Lisp dialects have ``closures'', objects that are like functions | 896 Some Lisp dialects have ``closures'', objects that are like functions |
897 but record additional variable bindings. Closures are available in | 897 but record additional variable bindings. Closures are available in |
898 XEmacs Lisp using the @code{lexical-let} and @code{lexical-let*}macroes, | 898 XEmacs Lisp using the @code{lexical-let} and @code{lexical-let*} macros, |
899 which are autoloaded from @file{cl-macs}. @xref{(cl)Lexical Bindings}. | 899 which are autoloaded from @file{cl-macs}. @xref{(cl)Lexical Bindings}. |
900 Note that function arguments cannot be closed around using these | 900 Note that function arguments cannot be closed around using these |
901 macros, and that any lambda expressions returned will not be | 901 macros, and that any lambda expressions returned will not be |
902 byte-compiled. | 902 byte-compiled. |
903 | 903 |