diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-28 14:52:37 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-28 14:52:37 +0000 |
commit | ec221d13b75a2fedd86911ab92e105262ac098ee (patch) | |
tree | f8a7f2f95d3772348bc80ec531940646d8e594b4 /lispref/macros.texi | |
parent | a6b7947839908b6b55f1e83caec1f6450afc1e13 (diff) | |
download | emacs-ec221d13b75a2fedd86911ab92e105262ac098ee.tar.gz |
entered into RCS
Diffstat (limited to 'lispref/macros.texi')
-rw-r--r-- | lispref/macros.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/macros.texi b/lispref/macros.texi index 13e85568eaf..71dc82f9e54 100644 --- a/lispref/macros.texi +++ b/lispref/macros.texi @@ -320,7 +320,7 @@ should not be used: @cindex CL note---@samp{,}, @samp{,@@} as functions @quotation -@b{Common Lisp note:} in Common Lisp, @samp{,} and @samp{,@@} are +@b{Common Lisp note:} In Common Lisp, @samp{,} and @samp{,@@} are implemented as reader macros, so they do not require parentheses. In Emacs Lisp they use function call syntax because reader macros are not supported (for simplicity's sake). @@ -474,7 +474,7 @@ number of times: local variable named @code{max} which the user does not expect. This causes trouble in examples such as the following: -@example +@smallexample @group (let ((max 0)) (for x from 0 to 10 do @@ -482,7 +482,7 @@ causes trouble in examples such as the following: (if (< max this) (setq max this))))) @end group -@end example +@end smallexample @noindent The references to @code{max} inside the body of the @code{for}, which |