]> code.delx.au - gnu-emacs/commitdiff
(Printing Notation): Avoid confusion of `print' when explaining @print.
authorRichard M. Stallman <rms@gnu.org>
Sun, 21 Nov 2004 02:33:11 +0000 (02:33 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 21 Nov 2004 02:33:11 +0000 (02:33 +0000)
lispref/ChangeLog
lispref/intro.texi

index f792c8d4c38130d78764605c0ea535add8705a0c..3d6b3cfd59cff90293783cb318ef8997ff4e1425 100644 (file)
@@ -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).
index cd87735a6f401ea416c900e6bf9a8f97fe87c0df..50a6d8479c830fe80cd76760a004b741773d7483 100644 (file)
@@ -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