comparison src/print.c @ 7185:3d155f671ac2

Doc fixes.
author Karl Heuer <kwzh@gnu.org>
date Fri, 29 Apr 1994 03:06:08 +0000
parents 514a324b3681
children 8921d0012bd5
comparison
equal deleted inserted replaced
7184:caac285c072d 7185:3d155f671ac2
309 UNGCPRO; 309 UNGCPRO;
310 } 310 }
311 } 311 }
312 312
313 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0, 313 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
314 "Output character CHAR to stream STREAM.\n\ 314 "Output character CHAR to stream PRINTCHARFUN.\n\
315 STREAM defaults to the value of `standard-output' (which see).") 315 PRINTCHARFUN defaults to the value of `standard-output' (which see).")
316 (ch, printcharfun) 316 (ch, printcharfun)
317 Lisp_Object ch, printcharfun; 317 Lisp_Object ch, printcharfun;
318 { 318 {
319 struct buffer *old = current_buffer; 319 struct buffer *old = current_buffer;
320 int old_point = -1; 320 int old_point = -1;
446 #endif /* not standalone */ 446 #endif /* not standalone */
447 447
448 static void print (); 448 static void print ();
449 449
450 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0, 450 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
451 "Output a newline to STREAM.\n\ 451 "Output a newline to stream PRINTCHARFUN.\n\
452 If STREAM is omitted or nil, the value of `standard-output' is used.") 452 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.")
453 (printcharfun) 453 (printcharfun)
454 Lisp_Object printcharfun; 454 Lisp_Object printcharfun;
455 { 455 {
456 struct buffer *old = current_buffer; 456 struct buffer *old = current_buffer;
457 int old_point = -1; 457 int old_point = -1;
468 468
469 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0, 469 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
470 "Output the printed representation of OBJECT, any Lisp object.\n\ 470 "Output the printed representation of OBJECT, any Lisp object.\n\
471 Quoting characters are printed when needed to make output that `read'\n\ 471 Quoting characters are printed when needed to make output that `read'\n\
472 can handle, whenever this is possible.\n\ 472 can handle, whenever this is possible.\n\
473 Output stream is STREAM, or value of `standard-output' (which see).") 473 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
474 (obj, printcharfun) 474 (obj, printcharfun)
475 Lisp_Object obj, printcharfun; 475 Lisp_Object obj, printcharfun;
476 { 476 {
477 struct buffer *old = current_buffer; 477 struct buffer *old = current_buffer;
478 int old_point = -1; 478 int old_point = -1;
527 527
528 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0, 528 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
529 "Output the printed representation of OBJECT, any Lisp object.\n\ 529 "Output the printed representation of OBJECT, any Lisp object.\n\
530 No quoting characters are used; no delimiters are printed around\n\ 530 No quoting characters are used; no delimiters are printed around\n\
531 the contents of strings.\n\ 531 the contents of strings.\n\
532 Output stream is STREAM, or value of standard-output (which see).") 532 Output stream is PRINTCHARFUN, or value of standard-output (which see).")
533 (obj, printcharfun) 533 (obj, printcharfun)
534 Lisp_Object obj, printcharfun; 534 Lisp_Object obj, printcharfun;
535 { 535 {
536 struct buffer *old = current_buffer; 536 struct buffer *old = current_buffer;
537 int old_point = -1; 537 int old_point = -1;
549 549
550 DEFUN ("print", Fprint, Sprint, 1, 2, 0, 550 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
551 "Output the printed representation of OBJECT, with newlines around it.\n\ 551 "Output the printed representation of OBJECT, with newlines around it.\n\
552 Quoting characters are printed when needed to make output that `read'\n\ 552 Quoting characters are printed when needed to make output that `read'\n\
553 can handle, whenever this is possible.\n\ 553 can handle, whenever this is possible.\n\
554 Output stream is STREAM, or value of `standard-output' (which see).") 554 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
555 (obj, printcharfun) 555 (obj, printcharfun)
556 Lisp_Object obj, printcharfun; 556 Lisp_Object obj, printcharfun;
557 { 557 {
558 struct buffer *old = current_buffer; 558 struct buffer *old = current_buffer;
559 int old_point = -1; 559 int old_point = -1;