Mercurial > emacs
changeset 58384:3171059923a2
(Printing Notation): Avoid confusion of `print' when explaining @print.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 21 Nov 2004 02:31:58 +0000 |
parents | 47ee198dd02a |
children | 03f69db352cc |
files | lispref/intro.texi |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/intro.texi Sun Nov 21 02:22:12 2004 +0000 +++ b/lispref/intro.texi Sun Nov 21 02:31:58 2004 +0000 @@ -263,12 +263,13 @@ 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