diff options
| author | Eli Zaretskii | 2001-03-26 17:07:37 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-03-26 17:07:37 +0000 |
| commit | 3fa0c5052be821b2897e4c2fbef0cf45dbd9d705 (patch) | |
| tree | d361e8c82e1bf09ca349db11070d94876175bbd8 /src/print.c | |
| parent | e120bebf6a973ee0033086177be626388b441201 (diff) | |
| download | emacs-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.c | 64 |
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\ |
| 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 | Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") | 702 | \n\ |
| 703 | OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ | ||
| 704 | a list, a buffer, a window, a frame, etc.\n\ | ||
| 705 | \n\ | ||
| 706 | A printed representation of an object is text which describes that object.\n\ | ||
| 707 | \n\ | ||
| 708 | Optional argument PRINTCHARFUN is the output stream, which can be one\n\ | ||
| 709 | of 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\ | ||
| 718 | If PRINTCHARFUN is omitted, the value of `standard-output' (which see)\n\ | ||
| 719 | is 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\ |
| 724 | 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\ |
| 725 | 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\ |
| 726 | second argument NOESCAPE is non-nil.") | 743 | second argument NOESCAPE is non-nil.\n\ |
| 744 | \n\ | ||
| 745 | OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ | ||
| 746 | a list, a buffer, a window, a frame, etc.\n\ | ||
| 747 | \n\ | ||
| 748 | A 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\ |
| 760 | No quoting characters are used; no delimiters are printed around\n\ | 782 | No quoting characters are used; no delimiters are printed around\n\ |
| 761 | the contents of strings.\n\ | 783 | the contents of strings.\n\ |
| 762 | Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") | 784 | \n\ |
| 785 | OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ | ||
| 786 | a list, a buffer, a window, a frame, etc.\n\ | ||
| 787 | \n\ | ||
| 788 | A printed representation of an object is text which describes that object.\n\ | ||
| 789 | \n\ | ||
| 790 | Optional argument PRINTCHARFUN is the output stream, which can be one\n\ | ||
| 791 | of 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\ | ||
| 800 | If PRINTCHARFUN is omitted, the value of `standard-output' (which see)\n\ | ||
| 801 | is 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\ |
| 778 | 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\ |
| 779 | can handle, whenever this is possible.\n\ | 818 | can handle, whenever this is possible.\n\ |
| 780 | Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") | 819 | \n\ |
| 820 | OBJECT is any of the Lisp data types: a number, a a string, a symbol,\n\ | ||
| 821 | a list, a buffer, a window, a frame, etc.\n\ | ||
| 822 | \n\ | ||
| 823 | A printed representation of an object is text which describes that object.\n\ | ||
| 824 | \n\ | ||
| 825 | Optional argument PRINTCHARFUN is the output stream, which can be one\n\ | ||
| 826 | of 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\ | ||
| 835 | If PRINTCHARFUN is omitted, the value of `standard-output' (which see)\n\ | ||
| 836 | is used instead.") | ||
| 781 | (object, printcharfun) | 837 | (object, printcharfun) |
| 782 | Lisp_Object object, printcharfun; | 838 | Lisp_Object object, printcharfun; |
| 783 | { | 839 | { |