# HG changeset patch # User Karl Heuer # Date 767588768 0 # Node ID 3d155f671ac2443a9197c4333a366d4c4ac04733 # Parent caac285c072d6e953b2b7b694ec2e4cbac6845be Doc fixes. diff -r caac285c072d -r 3d155f671ac2 src/print.c --- a/src/print.c Fri Apr 29 02:51:44 1994 +0000 +++ b/src/print.c Fri Apr 29 03:06:08 1994 +0000 @@ -311,8 +311,8 @@ } DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0, - "Output character CHAR to stream STREAM.\n\ -STREAM defaults to the value of `standard-output' (which see).") + "Output character CHAR to stream PRINTCHARFUN.\n\ +PRINTCHARFUN defaults to the value of `standard-output' (which see).") (ch, printcharfun) Lisp_Object ch, printcharfun; { @@ -448,8 +448,8 @@ static void print (); DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0, - "Output a newline to STREAM.\n\ -If STREAM is omitted or nil, the value of `standard-output' is used.") + "Output a newline to stream PRINTCHARFUN.\n\ +If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.") (printcharfun) Lisp_Object printcharfun; { @@ -470,7 +470,7 @@ "Output the printed representation of OBJECT, any Lisp object.\n\ Quoting characters are printed when needed to make output that `read'\n\ can handle, whenever this is possible.\n\ -Output stream is STREAM, or value of `standard-output' (which see).") +Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") (obj, printcharfun) Lisp_Object obj, printcharfun; { @@ -529,7 +529,7 @@ "Output the printed representation of OBJECT, any Lisp object.\n\ No quoting characters are used; no delimiters are printed around\n\ the contents of strings.\n\ -Output stream is STREAM, or value of standard-output (which see).") +Output stream is PRINTCHARFUN, or value of standard-output (which see).") (obj, printcharfun) Lisp_Object obj, printcharfun; { @@ -551,7 +551,7 @@ "Output the printed representation of OBJECT, with newlines around it.\n\ Quoting characters are printed when needed to make output that `read'\n\ can handle, whenever this is possible.\n\ -Output stream is STREAM, or value of `standard-output' (which see).") +Output stream is PRINTCHARFUN, or value of `standard-output' (which see).") (obj, printcharfun) Lisp_Object obj, printcharfun; {