aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-14 00:08:47 +0000
committerRichard M. Stallman2001-11-14 00:08:47 +0000
commitfd4d156b145965d778fc320e6e73aeed81571d7b (patch)
tree11135dcf459c4e872f00413293c47517bba07926 /src
parent704788b3ec623d839d1ae7cd206262d554c033d5 (diff)
downloademacs-fd4d156b145965d778fc320e6e73aeed81571d7b.tar.gz
emacs-fd4d156b145965d778fc320e6e73aeed81571d7b.zip
(Fprin1_to_string): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/print.c8
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. */)
741Lisp_Object Vprin1_to_string_buffer; 741Lisp_Object Vprin1_to_string_buffer;
742 742
743DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0, 743DEFUN ("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.
745any Lisp object. Quoting characters are used when needed to make output 745OBJECT can be any Lisp object. This function outputs quoting characters
746that `read' can handle, whenever this is possible, unless the optional 746when ncessary to make output that `read' can handle, whenever possible,
747second argument NOESCAPE is non-nil. 747unless the optional second argument NOESCAPE is non-nil.
748 748
749OBJECT is any of the Lisp data types: a number, a string, a symbol, 749OBJECT is any of the Lisp data types: a number, a string, a symbol,
750a list, a buffer, a window, a frame, etc. 750a list, a buffer, a window, a frame, etc.