]> git.eshelyaron.com Git - emacs.git/commitdiff
(prin1, print): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Wed, 14 Nov 2001 19:19:28 +0000 (19:19 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 14 Nov 2001 19:19:28 +0000 (19:19 +0000)
src/ChangeLog
src/print.c

index 8c82fb3aef4896c7e4213aa1f6dc15271361acd3..8cb3f768c91990f4eccb3e896ffb1fcff5f02dcc 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-14  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * print.c (prin1, print): Doc fix.
+
 2001-11-14  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
        * fontset.h: Remove prototypes for variables
index 74447387df476f9e6bc14d5179af1ddfee13733e..6ce2b1c67db1f0093dc1cba407d42601d8577949 100644 (file)
@@ -702,7 +702,8 @@ If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.  */)
 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
        doc: /* Output the printed representation of OBJECT, any Lisp object.
 Quoting characters are printed when needed to make output that `read'
-can handle, whenever this is possible.
+can handle, whenever this is possible.  For complex objects, the behavior
+is controled by `print-level' and `print-length', which see.
 
 OBJECT is any of the Lisp data types: a number, a string, a symbol,
 a list, a buffer, a window, a frame, etc.
@@ -819,7 +820,8 @@ is used instead.  */)
 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
        doc: /* Output the printed representation of OBJECT, with newlines around it.
 Quoting characters are printed when needed to make output that `read'
-can handle, whenever this is possible.
+can handle, whenever this is possible.  For complex objects, the behavior
+is controled by `print-level' and `print-length', which see.
 
 OBJECT is any of the Lisp data types: a number, a string, a symbol,
 a list, a buffer, a window, a frame, etc.