comparison src/print.c @ 37088:8a3b16d6a5b0

(Fprin1, Fprin1_to_string, Fprinc, Fprint): Fix last change.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 30 Mar 2001 10:59:36 +0000
parents 0c985ba42c84
children 12c0b536ecbe
comparison
equal deleted inserted replaced
37087:f4039f11318f 37088:8a3b16d6a5b0
698 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0, 698 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\
700 Quoting characters are printed when needed to make output that `read'\n\ 700 Quoting characters are printed when needed to make output that `read'\n\
701 can handle, whenever this is possible.\n\ 701 can handle, whenever this is possible.\n\
702 \n\ 702 \n\
703 OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ 703 OBJECT is any of the Lisp data types: a number, a string, a symbol,\n\
704 a list, a buffer, a window, a frame, etc.\n\ 704 a list, a buffer, a window, a frame, etc.\n\
705 \n\ 705 \n\
706 A printed representation of an object is text which describes that object.\n\ 706 A printed representation of an object is text which describes that object.\n\
707 \n\ 707 \n\
708 Optional argument PRINTCHARFUN is the output stream, which can be one\n\ 708 Optional argument PRINTCHARFUN is the output stream, which can be one\n\
740 "Return a string containing the printed representation of OBJECT,\n\ 740 "Return a string containing the printed representation of OBJECT,\n\
741 any Lisp object. Quoting characters are used when needed to make output\n\ 741 any Lisp object. Quoting characters are used when needed to make output\n\
742 that `read' can handle, whenever this is possible, unless the optional\n\ 742 that `read' can handle, whenever this is possible, unless the optional\n\
743 second argument NOESCAPE is non-nil.\n\ 743 second argument NOESCAPE is non-nil.\n\
744 \n\ 744 \n\
745 OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ 745 OBJECT is any of the Lisp data types: a number, a string, a symbol,\n\
746 a list, a buffer, a window, a frame, etc.\n\ 746 a list, a buffer, a window, a frame, etc.\n\
747 \n\ 747 \n\
748 A printed representation of an object is text which describes that object.") 748 A printed representation of an object is text which describes that object.")
749 (object, noescape) 749 (object, noescape)
750 Lisp_Object object, noescape; 750 Lisp_Object object, noescape;
780 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0, 780 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
781 "Output the printed representation of OBJECT, any Lisp object.\n\ 781 "Output the printed representation of OBJECT, any Lisp object.\n\
782 No quoting characters are used; no delimiters are printed around\n\ 782 No quoting characters are used; no delimiters are printed around\n\
783 the contents of strings.\n\ 783 the contents of strings.\n\
784 \n\ 784 \n\
785 OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ 785 OBJECT is any of the Lisp data types: a number, a string, a symbol,\n\
786 a list, a buffer, a window, a frame, etc.\n\ 786 a list, a buffer, a window, a frame, etc.\n\
787 \n\ 787 \n\
788 A printed representation of an object is text which describes that object.\n\ 788 A printed representation of an object is text which describes that object.\n\
789 \n\ 789 \n\
790 Optional argument PRINTCHARFUN is the output stream, which can be one\n\ 790 Optional argument PRINTCHARFUN is the output stream, which can be one\n\
815 DEFUN ("print", Fprint, Sprint, 1, 2, 0, 815 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
816 "Output the printed representation of OBJECT, with newlines around it.\n\ 816 "Output the printed representation of OBJECT, with newlines around it.\n\
817 Quoting characters are printed when needed to make output that `read'\n\ 817 Quoting characters are printed when needed to make output that `read'\n\
818 can handle, whenever this is possible.\n\ 818 can handle, whenever this is possible.\n\
819 \n\ 819 \n\
820 OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ 820 OBJECT is any of the Lisp data types: a number, a string, a symbol,\n\
821 a list, a buffer, a window, a frame, etc.\n\ 821 a list, a buffer, a window, a frame, etc.\n\
822 \n\ 822 \n\
823 A printed representation of an object is text which describes that object.\n\ 823 A printed representation of an object is text which describes that object.\n\
824 \n\ 824 \n\
825 Optional argument PRINTCHARFUN is the output stream, which can be one\n\ 825 Optional argument PRINTCHARFUN is the output stream, which can be one\n\