From: Eli Zaretskii Date: Wed, 14 Nov 2001 19:19:28 +0000 (+0000) Subject: (prin1, print): Doc fix. X-Git-Tag: ttn-vms-21-2-B4~18562 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9474c847f809ddb438a7c37b7e0dcbd781d9a8ca;p=emacs.git (prin1, print): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8c82fb3aef4..8cb3f768c91 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-11-14 Eli Zaretskii + + * print.c (prin1, print): Doc fix. + 2001-11-14 Pavel Jan,Bm(Bk * fontset.h: Remove prototypes for variables diff --git a/src/print.c b/src/print.c index 74447387df4..6ce2b1c67db 100644 --- a/src/print.c +++ b/src/print.c @@ -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.