From: Richard M. Stallman Date: Sun, 21 Nov 2004 02:33:11 +0000 (+0000) Subject: (Printing Notation): Avoid confusion of `print' when explaining @print. X-Git-Tag: ttn-vms-21-2-B4~3788 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8f40a868d70112dbb292de3369b806041782c2d9;p=emacs.git (Printing Notation): Avoid confusion of `print' when explaining @print. --- 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 + * 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