aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorEli Zaretskii2001-03-26 17:07:37 +0000
committerEli Zaretskii2001-03-26 17:07:37 +0000
commit3fa0c5052be821b2897e4c2fbef0cf45dbd9d705 (patch)
treed361e8c82e1bf09ca349db11070d94876175bbd8 /src/print.c
parente120bebf6a973ee0033086177be626388b441201 (diff)
downloademacs-3fa0c5052be821b2897e4c2fbef0cf45dbd9d705.tar.gz
emacs-3fa0c5052be821b2897e4c2fbef0cf45dbd9d705.zip
(Fprin1, Fprin1_to_string, Fprinc, Fprint): Doc fix.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c64
1 files changed, 60 insertions, 4 deletions
diff --git a/src/print.c b/src/print.c
index c55fe18a403..cbb31310354 100644
--- a/src/print.c
+++ b/src/print.c
@@ -699,7 +699,24 @@ DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
699 "Output the printed representation of OBJECT, any Lisp object.\n\ 699 "Output the printed representation of OBJECT, any Lisp object.\n\
700Quoting characters are printed when needed to make output that `read'\n\ 700Quoting characters are printed when needed to make output that `read'\n\
701can handle, whenever this is possible.\n\ 701can handle, whenever this is possible.\n\
702Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") 702\n\
703OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\
704a list, a buffer, a window, a frame, etc.\n\
705\n\
706A printed representation of an object is text which describes that object.\n\
707\n\
708Optional argument PRINTCHARFUN is the output stream, which can be one\n\
709of these:\n\
710\n\
711 - a buffer, in which case output is inserted into that buffer at point;\n\
712 - a marker, in which case output is inserted at marker's position;\n\
713 - a function, in which case that function is called once for each\n\
714 character of OBJECT's printed representation;\n\
715 - a symbol, in which case that symbol's function definition is called; or\n\
716 - t, in which case the output is displayed in the echo area.\n\
717\n\
718If PRINTCHARFUN is omitted, the value of `standard-output' (which see)\n\
719is used instead.")
703 (object, printcharfun) 720 (object, printcharfun)
704 Lisp_Object object, printcharfun; 721 Lisp_Object object, printcharfun;
705{ 722{
@@ -723,7 +740,12 @@ DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
723 "Return a string containing the printed representation of OBJECT,\n\ 740 "Return a string containing the printed representation of OBJECT,\n\
724any Lisp object. Quoting characters are used when needed to make output\n\ 741any Lisp object. Quoting characters are used when needed to make output\n\
725that `read' can handle, whenever this is possible, unless the optional\n\ 742that `read' can handle, whenever this is possible, unless the optional\n\
726second argument NOESCAPE is non-nil.") 743second argument NOESCAPE is non-nil.\n\
744\n\
745OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\
746a list, a buffer, a window, a frame, etc.\n\
747\n\
748A printed representation of an object is text which describes that object.")
727 (object, noescape) 749 (object, noescape)
728 Lisp_Object object, noescape; 750 Lisp_Object object, noescape;
729{ 751{
@@ -759,7 +781,24 @@ DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
759 "Output the printed representation of OBJECT, any Lisp object.\n\ 781 "Output the printed representation of OBJECT, any Lisp object.\n\
760No quoting characters are used; no delimiters are printed around\n\ 782No quoting characters are used; no delimiters are printed around\n\
761the contents of strings.\n\ 783the contents of strings.\n\
762Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") 784\n\
785OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\
786a list, a buffer, a window, a frame, etc.\n\
787\n\
788A printed representation of an object is text which describes that object.\n\
789\n\
790Optional argument PRINTCHARFUN is the output stream, which can be one\n\
791of these:\n\
792\n\
793 - a buffer, in which case output is inserted into that buffer at point;\n\
794 - a marker, in which case output is inserted at marker's position;\n\
795 - a function, in which case that function is called once for each\n\
796 character of OBJECT's printed representation;\n\
797 - a symbol, in which case that symbol's function definition is called; or\n\
798 - t, in which case the output is displayed in the echo area.\n\
799\n\
800If PRINTCHARFUN is omitted, the value of `standard-output' (which see)\n\
801is used instead.")
763 (object, printcharfun) 802 (object, printcharfun)
764 Lisp_Object object, printcharfun; 803 Lisp_Object object, printcharfun;
765{ 804{
@@ -777,7 +816,24 @@ DEFUN ("print", Fprint, Sprint, 1, 2, 0,
777 "Output the printed representation of OBJECT, with newlines around it.\n\ 816 "Output the printed representation of OBJECT, with newlines around it.\n\
778Quoting characters are printed when needed to make output that `read'\n\ 817Quoting characters are printed when needed to make output that `read'\n\
779can handle, whenever this is possible.\n\ 818can handle, whenever this is possible.\n\
780Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") 819\n\
820OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\
821a list, a buffer, a window, a frame, etc.\n\
822\n\
823A printed representation of an object is text which describes that object.\n\
824\n\
825Optional argument PRINTCHARFUN is the output stream, which can be one\n\
826of these:\n\
827\n\
828 - a buffer, in which case output is inserted into that buffer at point;\n\
829 - a marker, in which case output is inserted at marker's position;\n\
830 - a function, in which case that function is called once for each\n\
831 character of OBJECT's printed representation;\n\
832 - a symbol, in which case that symbol's function definition is called; or\n\
833 - t, in which case the output is displayed in the echo area.\n\
834\n\
835If PRINTCHARFUN is omitted, the value of `standard-output' (which see)\n\
836is used instead.")
781 (object, printcharfun) 837 (object, printcharfun)
782 Lisp_Object object, printcharfun; 838 Lisp_Object object, printcharfun;
783{ 839{