Mercurial > emacs
changeset 41056:d1554875b932
(prin1, print): Doc fix.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 14 Nov 2001 19:18:35 +0000 |
parents | ff0394a304bd |
children | 0e97a3b68002 |
files | src/print.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/print.c Wed Nov 14 13:44:38 2001 +0000 +++ b/src/print.c Wed Nov 14 19:18:35 2001 +0000 @@ -702,7 +702,8 @@ 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 @@ 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.