aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2001-11-14 19:19:28 +0000
committerEli Zaretskii2001-11-14 19:19:28 +0000
commit9474c847f809ddb438a7c37b7e0dcbd781d9a8ca (patch)
tree014e92fb88642ae0223f028f0c9a4ba2fb31b243 /src
parentf327c2f9f54ce39502f5dca5d4b9e69d033f8cd3 (diff)
downloademacs-9474c847f809ddb438a7c37b7e0dcbd781d9a8ca.tar.gz
emacs-9474c847f809ddb438a7c37b7e0dcbd781d9a8ca.zip
(prin1, print): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/print.c6
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8c82fb3aef4..8cb3f768c91 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * print.c (prin1, print): Doc fix.
4
12001-11-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 52001-11-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 6
3 * fontset.h: Remove prototypes for variables 7 * 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. */)
702DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0, 702DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
703 doc: /* Output the printed representation of OBJECT, any Lisp object. 703 doc: /* Output the printed representation of OBJECT, any Lisp object.
704Quoting characters are printed when needed to make output that `read' 704Quoting characters are printed when needed to make output that `read'
705can handle, whenever this is possible. 705can handle, whenever this is possible. For complex objects, the behavior
706is controled by `print-level' and `print-length', which see.
706 707
707OBJECT is any of the Lisp data types: a number, a string, a symbol, 708OBJECT is any of the Lisp data types: a number, a string, a symbol,
708a list, a buffer, a window, a frame, etc. 709a list, a buffer, a window, a frame, etc.
@@ -819,7 +820,8 @@ is used instead. */)
819DEFUN ("print", Fprint, Sprint, 1, 2, 0, 820DEFUN ("print", Fprint, Sprint, 1, 2, 0,
820 doc: /* Output the printed representation of OBJECT, with newlines around it. 821 doc: /* Output the printed representation of OBJECT, with newlines around it.
821Quoting characters are printed when needed to make output that `read' 822Quoting characters are printed when needed to make output that `read'
822can handle, whenever this is possible. 823can handle, whenever this is possible. For complex objects, the behavior
824is controled by `print-level' and `print-length', which see.
823 825
824OBJECT is any of the Lisp data types: a number, a string, a symbol, 826OBJECT is any of the Lisp data types: a number, a string, a symbol,
825a list, a buffer, a window, a frame, etc. 827a list, a buffer, a window, a frame, etc.