From: Richard M. Stallman Date: Wed, 14 Nov 2001 00:08:47 +0000 (+0000) Subject: (Fprin1_to_string): Doc fix. X-Git-Tag: ttn-vms-21-2-B4~18586 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fd4d156b145965d778fc320e6e73aeed81571d7b;p=emacs.git (Fprin1_to_string): Doc fix. --- 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. */) Lisp_Object Vprin1_to_string_buffer; DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0, - doc: /* Return a string containing the printed representation of OBJECT, -any Lisp object. Quoting characters are used when needed to make output -that `read' can handle, whenever this is possible, unless the optional -second argument NOESCAPE is non-nil. + doc: /* Return a string containing the printed representation of OBJECT. +OBJECT can be any Lisp object. This function outputs quoting characters +when ncessary to make output that `read' can handle, whenever possible, +unless the optional second argument NOESCAPE is non-nil. OBJECT is any of the Lisp data types: a number, a string, a symbol, a list, a buffer, a window, a frame, etc.