# HG changeset patch # User Richard M. Stallman # Date 1101004318 0 # Node ID 3171059923a223996e03f2b626cd0fb296986f1f # Parent 47ee198dd02aefe4fe4d79d3cfc194feb79c328c (Printing Notation): Avoid confusion of `print' when explaining @print. diff -r 47ee198dd02a -r 3171059923a2 lispref/intro.texi --- 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