diff options
| author | Richard M. Stallman | 2001-11-14 00:08:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-14 00:08:47 +0000 |
| commit | fd4d156b145965d778fc320e6e73aeed81571d7b (patch) | |
| tree | 11135dcf459c4e872f00413293c47517bba07926 /src | |
| parent | 704788b3ec623d839d1ae7cd206262d554c033d5 (diff) | |
| download | emacs-fd4d156b145965d778fc320e6e73aeed81571d7b.tar.gz emacs-fd4d156b145965d778fc320e6e73aeed81571d7b.zip | |
(Fprin1_to_string): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/print.c b/src/print.c index f1f1af787eb..74447387df4 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -741,10 +741,10 @@ is used instead. */) | |||
| 741 | Lisp_Object Vprin1_to_string_buffer; | 741 | Lisp_Object Vprin1_to_string_buffer; |
| 742 | 742 | ||
| 743 | DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0, | 743 | DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0, |
| 744 | doc: /* Return a string containing the printed representation of OBJECT, | 744 | doc: /* Return a string containing the printed representation of OBJECT. |
| 745 | any Lisp object. Quoting characters are used when needed to make output | 745 | OBJECT can be any Lisp object. This function outputs quoting characters |
| 746 | that `read' can handle, whenever this is possible, unless the optional | 746 | when ncessary to make output that `read' can handle, whenever possible, |
| 747 | second argument NOESCAPE is non-nil. | 747 | unless the optional second argument NOESCAPE is non-nil. |
| 748 | 748 | ||
| 749 | OBJECT is any of the Lisp data types: a number, a string, a symbol, | 749 | OBJECT is any of the Lisp data types: a number, a string, a symbol, |
| 750 | a list, a buffer, a window, a frame, etc. | 750 | a list, a buffer, a window, a frame, etc. |