diff options
| author | Eli Zaretskii | 2001-11-14 19:19:28 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-11-14 19:19:28 +0000 |
| commit | 9474c847f809ddb438a7c37b7e0dcbd781d9a8ca (patch) | |
| tree | 014e92fb88642ae0223f028f0c9a4ba2fb31b243 /src | |
| parent | f327c2f9f54ce39502f5dca5d4b9e69d033f8cd3 (diff) | |
| download | emacs-9474c847f809ddb438a7c37b7e0dcbd781d9a8ca.tar.gz emacs-9474c847f809ddb438a7c37b7e0dcbd781d9a8ca.zip | |
(prin1, print): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/print.c | 6 |
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 @@ | |||
| 1 | 2001-11-14 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * print.c (prin1, print): Doc fix. | ||
| 4 | |||
| 1 | 2001-11-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 5 | 2001-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. */) | |||
| 702 | DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0, | 702 | DEFUN ("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. |
| 704 | Quoting characters are printed when needed to make output that `read' | 704 | Quoting characters are printed when needed to make output that `read' |
| 705 | can handle, whenever this is possible. | 705 | can handle, whenever this is possible. For complex objects, the behavior |
| 706 | is controled by `print-level' and `print-length', which see. | ||
| 706 | 707 | ||
| 707 | OBJECT is any of the Lisp data types: a number, a string, a symbol, | 708 | OBJECT is any of the Lisp data types: a number, a string, a symbol, |
| 708 | a list, a buffer, a window, a frame, etc. | 709 | a list, a buffer, a window, a frame, etc. |
| @@ -819,7 +820,8 @@ is used instead. */) | |||
| 819 | DEFUN ("print", Fprint, Sprint, 1, 2, 0, | 820 | DEFUN ("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. |
| 821 | Quoting characters are printed when needed to make output that `read' | 822 | Quoting characters are printed when needed to make output that `read' |
| 822 | can handle, whenever this is possible. | 823 | can handle, whenever this is possible. For complex objects, the behavior |
| 824 | is controled by `print-level' and `print-length', which see. | ||
| 823 | 825 | ||
| 824 | OBJECT is any of the Lisp data types: a number, a string, a symbol, | 826 | OBJECT is any of the Lisp data types: a number, a string, a symbol, |
| 825 | a list, a buffer, a window, a frame, etc. | 827 | a list, a buffer, a window, a frame, etc. |