diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-11-21 02:33:11 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-11-21 02:33:11 +0000 |
commit | 8f40a868d70112dbb292de3369b806041782c2d9 (patch) | |
tree | 372a5e36697e74197849a30b62c33eb6ea271bc8 /lispref | |
parent | 65efff839c7e1d65cbe7ffe03ee9ada94019cf8e (diff) | |
download | emacs-8f40a868d70112dbb292de3369b806041782c2d9.tar.gz |
(Printing Notation): Avoid confusion of `print' when explaining @print.
Diffstat (limited to 'lispref')
-rw-r--r-- | lispref/ChangeLog | 9 | ||||
-rw-r--r-- | lispref/intro.texi | 7 |
2 files changed, 13 insertions, 3 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index f792c8d4c38..3d6b3cfd59c 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,5 +1,14 @@ 2004-11-20 Richard M. Stallman <rms@gnu.org> + * intro.texi (Printing Notation): Avoid confusion of `print' + when explaining @print. + + * macros.texi (Argument Evaluation): Fix 1st `for' expansion example. + + * display.texi (Display Table Format): Minor fix. + + * streams.texi (Output Functions): Fix print example. + * Makefile.in (elisp): New target. (dist): Depend on $(infodir)/elisp, not elisp. Copy the info files from $(infodir). diff --git a/lispref/intro.texi b/lispref/intro.texi index cd87735a6f4..50a6d8479c8 100644 --- a/lispref/intro.texi +++ b/lispref/intro.texi @@ -263,12 +263,13 @@ evaluating the function @code{eval-region}), the printed text is displayed in the echo area. Examples in this manual indicate printed text with @samp{@print{}}, -irrespective of where that text goes. The value returned by evaluating -the form (here @code{bar}) follows on a separate line. +irrespective of where that text goes. The value returned by +evaluating the form (here @code{bar}) follows on a separate line with +@samp{@result{}}. @example @group -(progn (print 'foo) (print 'bar)) +(progn (prin1 'foo) (princ "\n") (print 'bar)) @print{} foo @print{} bar @result{} bar |