]> code.delx.au - gnu-emacs/blob - src/print.c
(Faref, Faset): Adjusted for the new structure of
[gnu-emacs] / src / print.c
1 /* Lisp object printing and output streams.
2 Copyright (C) 1985, 86, 88, 93, 94, 95 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #include <config.h>
23 #include <stdio.h>
24 #include "lisp.h"
25
26 #ifndef standalone
27 #include "buffer.h"
28 #include "charset.h"
29 #include "frame.h"
30 #include "window.h"
31 #include "process.h"
32 #include "dispextern.h"
33 #include "termchar.h"
34 #include "keyboard.h"
35 #endif /* not standalone */
36
37 #ifdef USE_TEXT_PROPERTIES
38 #include "intervals.h"
39 #endif
40
41 Lisp_Object Vstandard_output, Qstandard_output;
42
43 /* These are used to print like we read. */
44 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
45
46 #ifdef LISP_FLOAT_TYPE
47 Lisp_Object Vfloat_output_format, Qfloat_output_format;
48 #endif /* LISP_FLOAT_TYPE */
49
50 /* Avoid actual stack overflow in print. */
51 int print_depth;
52
53 /* Detect most circularities to print finite output. */
54 #define PRINT_CIRCLE 200
55 Lisp_Object being_printed[PRINT_CIRCLE];
56
57 /* When printing into a buffer, first we put the text in this
58 block, then insert it all at once. */
59 char *print_buffer;
60
61 /* Size allocated in print_buffer. */
62 int print_buffer_size;
63 /* Size used in print_buffer. */
64 int print_buffer_pos;
65
66 /* Maximum length of list to print in full; noninteger means
67 effectively infinity */
68
69 Lisp_Object Vprint_length;
70
71 /* Maximum depth of list to print in full; noninteger means
72 effectively infinity. */
73
74 Lisp_Object Vprint_level;
75
76 /* Nonzero means print newlines in strings as \n. */
77
78 int print_escape_newlines;
79
80 Lisp_Object Qprint_escape_newlines;
81
82 /* Nonzero means print (quote foo) forms as 'foo, etc. */
83
84 int print_quoted;
85
86 /* Nonzero means print #: before uninterned symbols. */
87
88 int print_gensym;
89
90 /* Association list of certain objects that are `eq' in the form being
91 printed and which should be `eq' when read back in, using the #n=object
92 and #n# reader forms. Each element has the form (object . n). */
93
94 Lisp_Object printed_gensyms;
95
96 /* Nonzero means print newline to stdout before next minibuffer message.
97 Defined in xdisp.c */
98
99 extern int noninteractive_need_newline;
100
101 #ifdef MAX_PRINT_CHARS
102 static int print_chars;
103 static int max_print;
104 #endif /* MAX_PRINT_CHARS */
105
106 void print_interval ();
107 \f
108 #if 0
109 /* Convert between chars and GLYPHs */
110
111 int
112 glyphlen (glyphs)
113 register GLYPH *glyphs;
114 {
115 register int i = 0;
116
117 while (glyphs[i])
118 i++;
119 return i;
120 }
121
122 void
123 str_to_glyph_cpy (str, glyphs)
124 char *str;
125 GLYPH *glyphs;
126 {
127 register GLYPH *gp = glyphs;
128 register char *cp = str;
129
130 while (*cp)
131 *gp++ = *cp++;
132 }
133
134 void
135 str_to_glyph_ncpy (str, glyphs, n)
136 char *str;
137 GLYPH *glyphs;
138 register int n;
139 {
140 register GLYPH *gp = glyphs;
141 register char *cp = str;
142
143 while (n-- > 0)
144 *gp++ = *cp++;
145 }
146
147 void
148 glyph_to_str_cpy (glyphs, str)
149 GLYPH *glyphs;
150 char *str;
151 {
152 register GLYPH *gp = glyphs;
153 register char *cp = str;
154
155 while (*gp)
156 *str++ = *gp++ & 0377;
157 }
158 #endif
159 \f
160 /* Low level output routines for characters and strings */
161
162 /* Lisp functions to do output using a stream
163 must have the stream in a variable called printcharfun
164 and must start with PRINTPREPARE, end with PRINTFINISH,
165 and use PRINTDECLARE to declare common variables.
166 Use PRINTCHAR to output one character,
167 or call strout to output a block of characters.
168 */
169
170 #define PRINTDECLARE \
171 struct buffer *old = current_buffer; \
172 int old_point = -1, start_point; \
173 int specpdl_count = specpdl_ptr - specpdl; \
174 int free_print_buffer = 0; \
175 Lisp_Object original
176
177 #define PRINTPREPARE \
178 original = printcharfun; \
179 if (NILP (printcharfun)) printcharfun = Qt; \
180 if (BUFFERP (printcharfun)) \
181 { \
182 if (XBUFFER (printcharfun) != current_buffer) \
183 Fset_buffer (printcharfun); \
184 printcharfun = Qnil; \
185 } \
186 if (MARKERP (printcharfun)) \
187 { \
188 if (!(XMARKER (original)->buffer)) \
189 error ("Marker does not point anywhere"); \
190 if (XMARKER (original)->buffer != current_buffer) \
191 set_buffer_internal (XMARKER (original)->buffer); \
192 old_point = PT; \
193 SET_PT (marker_position (printcharfun)); \
194 start_point = PT; \
195 printcharfun = Qnil; \
196 } \
197 if (NILP (printcharfun)) \
198 { \
199 if (print_buffer != 0) \
200 record_unwind_protect (print_unwind, \
201 make_string (print_buffer, \
202 print_buffer_pos)); \
203 else \
204 { \
205 print_buffer_size = 1000; \
206 print_buffer = (char *) xmalloc (print_buffer_size); \
207 free_print_buffer = 1; \
208 } \
209 print_buffer_pos = 0; \
210 } \
211 printed_gensyms = Qnil
212
213 #define PRINTFINISH \
214 if (NILP (printcharfun)) \
215 insert (print_buffer, print_buffer_pos); \
216 if (free_print_buffer) \
217 { \
218 xfree (print_buffer); \
219 print_buffer = 0; \
220 } \
221 unbind_to (specpdl_count, Qnil); \
222 if (MARKERP (original)) \
223 Fset_marker (original, make_number (PT), Qnil); \
224 if (old_point >= 0) \
225 SET_PT (old_point + (old_point >= start_point \
226 ? PT - start_point : 0)); \
227 if (old != current_buffer) \
228 set_buffer_internal (old); \
229 printed_gensyms = Qnil
230
231 #define PRINTCHAR(ch) printchar (ch, printcharfun)
232
233 /* Nonzero if there is no room to print any more characters
234 so print might as well return right away. */
235
236 #define PRINTFULLP() \
237 (EQ (printcharfun, Qt) && !noninteractive \
238 && printbufidx >= FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)))))
239
240 /* This is used to restore the saved contents of print_buffer
241 when there is a recursive call to print. */
242 static Lisp_Object
243 print_unwind (saved_text)
244 Lisp_Object saved_text;
245 {
246 bcopy (XSTRING (saved_text)->data, print_buffer, XSTRING (saved_text)->size);
247 }
248
249 /* Index of first unused element of FRAME_MESSAGE_BUF (mini_frame). */
250 static int printbufidx;
251
252 static void
253 printchar (ch, fun)
254 unsigned int ch;
255 Lisp_Object fun;
256 {
257 Lisp_Object ch1;
258
259 #ifdef MAX_PRINT_CHARS
260 if (max_print)
261 print_chars++;
262 #endif /* MAX_PRINT_CHARS */
263 #ifndef standalone
264 if (EQ (fun, Qnil))
265 {
266 int len;
267 char work[4], *str;
268
269 QUIT;
270 len = CHAR_STRING (ch, work, str);
271 if (print_buffer_pos + len >= print_buffer_size)
272 print_buffer = (char *) xrealloc (print_buffer,
273 print_buffer_size *= 2);
274 bcopy (str, print_buffer + print_buffer_pos, len);
275 print_buffer_pos += len;
276 return;
277 }
278
279 if (EQ (fun, Qt))
280 {
281 FRAME_PTR mini_frame
282 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
283 unsigned char work[4], *str;
284 int len = CHAR_STRING (ch, work, str);
285
286 QUIT;
287
288 if (noninteractive)
289 {
290 while (len--)
291 putchar (*str), str++;
292 noninteractive_need_newline = 1;
293 return;
294 }
295
296 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame)
297 || !message_buf_print)
298 {
299 message_log_maybe_newline ();
300 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame);
301 printbufidx = 0;
302 echo_area_glyphs_length = 0;
303 message_buf_print = 1;
304 }
305
306 message_dolog (str, len, 0);
307 if (printbufidx < FRAME_MESSAGE_BUF_SIZE (mini_frame) - len)
308 bcopy (str, &FRAME_MESSAGE_BUF (mini_frame)[printbufidx], len),
309 printbufidx += len;
310 FRAME_MESSAGE_BUF (mini_frame)[printbufidx] = 0;
311 echo_area_glyphs_length = printbufidx;
312
313 return;
314 }
315 #endif /* not standalone */
316
317 XSETFASTINT (ch1, ch);
318 call1 (fun, ch1);
319 }
320
321 static void
322 strout (ptr, size, printcharfun)
323 char *ptr;
324 int size;
325 Lisp_Object printcharfun;
326 {
327 int i = 0;
328
329 if (size < 0)
330 size = strlen (ptr);
331
332 if (EQ (printcharfun, Qnil))
333 {
334 if (print_buffer_pos + size > print_buffer_size)
335 {
336 print_buffer_size = print_buffer_size * 2 + size;
337 print_buffer = (char *) xrealloc (print_buffer,
338 print_buffer_size);
339 }
340 bcopy (ptr, print_buffer + print_buffer_pos, size);
341 print_buffer_pos += size;
342
343 #ifdef MAX_PRINT_CHARS
344 if (max_print)
345 print_chars += size;
346 #endif /* MAX_PRINT_CHARS */
347 return;
348 }
349 if (EQ (printcharfun, Qt))
350 {
351 FRAME_PTR mini_frame
352 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
353
354 QUIT;
355
356 #ifdef MAX_PRINT_CHARS
357 if (max_print)
358 print_chars += size;
359 #endif /* MAX_PRINT_CHARS */
360
361 if (noninteractive)
362 {
363 fwrite (ptr, 1, size, stdout);
364 noninteractive_need_newline = 1;
365 return;
366 }
367
368 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame)
369 || !message_buf_print)
370 {
371 message_log_maybe_newline ();
372 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame);
373 printbufidx = 0;
374 echo_area_glyphs_length = 0;
375 message_buf_print = 1;
376 }
377
378 message_dolog (ptr, size, 0);
379 if (size > FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1)
380 {
381 size = FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1;
382 /* Rewind incomplete multi-byte form. */
383 while (size && (unsigned char) ptr[size] >= 0xA0) size--;
384 }
385 bcopy (ptr, &FRAME_MESSAGE_BUF (mini_frame) [printbufidx], size);
386 printbufidx += size;
387 echo_area_glyphs_length = printbufidx;
388 FRAME_MESSAGE_BUF (mini_frame) [printbufidx] = 0;
389
390 return;
391 }
392
393 i = 0;
394 while (i < size)
395 {
396 /* Here, we must convert each multi-byte form to the
397 corresponding character code before handing it to PRINTCHAR. */
398 int len;
399 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size - i, len);
400
401 PRINTCHAR (ch);
402 i += len;
403 }
404 }
405
406 /* Print the contents of a string STRING using PRINTCHARFUN.
407 It isn't safe to use strout in many cases,
408 because printing one char can relocate. */
409
410 print_string (string, printcharfun)
411 Lisp_Object string;
412 Lisp_Object printcharfun;
413 {
414 if (EQ (printcharfun, Qt) || NILP (printcharfun))
415 /* strout is safe for output to a frame (echo area) or to print_buffer. */
416 strout (XSTRING (string)->data, XSTRING (string)->size, printcharfun);
417 else
418 {
419 /* Otherwise, fetch the string address for each character. */
420 int i;
421 int size = XSTRING (string)->size;
422 struct gcpro gcpro1;
423 GCPRO1 (string);
424 for (i = 0; i < size; i++)
425 PRINTCHAR (XSTRING (string)->data[i]);
426 UNGCPRO;
427 }
428 }
429 \f
430 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
431 "Output character CHARACTER to stream PRINTCHARFUN.\n\
432 PRINTCHARFUN defaults to the value of `standard-output' (which see).")
433 (character, printcharfun)
434 Lisp_Object character, printcharfun;
435 {
436 PRINTDECLARE;
437
438 if (NILP (printcharfun))
439 printcharfun = Vstandard_output;
440 CHECK_NUMBER (character, 0);
441 PRINTPREPARE;
442 PRINTCHAR (XINT (character));
443 PRINTFINISH;
444 return character;
445 }
446
447 /* Used from outside of print.c to print a block of SIZE chars at DATA
448 on the default output stream.
449 Do not use this on the contents of a Lisp string. */
450
451 write_string (data, size)
452 char *data;
453 int size;
454 {
455 PRINTDECLARE;
456 Lisp_Object printcharfun;
457
458 printcharfun = Vstandard_output;
459
460 PRINTPREPARE;
461 strout (data, size, printcharfun);
462 PRINTFINISH;
463 }
464
465 /* Used from outside of print.c to print a block of SIZE chars at DATA
466 on a specified stream PRINTCHARFUN.
467 Do not use this on the contents of a Lisp string. */
468
469 write_string_1 (data, size, printcharfun)
470 char *data;
471 int size;
472 Lisp_Object printcharfun;
473 {
474 PRINTDECLARE;
475
476 PRINTPREPARE;
477 strout (data, size, printcharfun);
478 PRINTFINISH;
479 }
480
481
482 #ifndef standalone
483
484 void
485 temp_output_buffer_setup (bufname)
486 char *bufname;
487 {
488 register struct buffer *old = current_buffer;
489 register Lisp_Object buf;
490
491 Fset_buffer (Fget_buffer_create (build_string (bufname)));
492
493 current_buffer->directory = old->directory;
494 current_buffer->read_only = Qnil;
495 Ferase_buffer ();
496
497 XSETBUFFER (buf, current_buffer);
498 specbind (Qstandard_output, buf);
499
500 set_buffer_internal (old);
501 }
502
503 Lisp_Object
504 internal_with_output_to_temp_buffer (bufname, function, args)
505 char *bufname;
506 Lisp_Object (*function) ();
507 Lisp_Object args;
508 {
509 int count = specpdl_ptr - specpdl;
510 Lisp_Object buf, val;
511 struct gcpro gcpro1;
512
513 GCPRO1 (args);
514 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
515 temp_output_buffer_setup (bufname);
516 buf = Vstandard_output;
517 UNGCPRO;
518
519 val = (*function) (args);
520
521 GCPRO1 (val);
522 temp_output_buffer_show (buf);
523 UNGCPRO;
524
525 return unbind_to (count, val);
526 }
527
528 DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer,
529 1, UNEVALLED, 0,
530 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.\n\
531 The buffer is cleared out initially, and marked as unmodified when done.\n\
532 All output done by BODY is inserted in that buffer by default.\n\
533 The buffer is displayed in another window, but not selected.\n\
534 The value of the last form in BODY is returned.\n\
535 If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\n\
536 If variable `temp-buffer-show-function' is non-nil, call it at the end\n\
537 to get the buffer displayed. It gets one argument, the buffer to display.")
538 (args)
539 Lisp_Object args;
540 {
541 struct gcpro gcpro1;
542 Lisp_Object name;
543 int count = specpdl_ptr - specpdl;
544 Lisp_Object buf, val;
545
546 GCPRO1(args);
547 name = Feval (Fcar (args));
548 UNGCPRO;
549
550 CHECK_STRING (name, 0);
551 temp_output_buffer_setup (XSTRING (name)->data);
552 buf = Vstandard_output;
553
554 val = Fprogn (Fcdr (args));
555
556 temp_output_buffer_show (buf);
557
558 return unbind_to (count, val);
559 }
560 #endif /* not standalone */
561 \f
562 static void print ();
563
564 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
565 "Output a newline to stream PRINTCHARFUN.\n\
566 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.")
567 (printcharfun)
568 Lisp_Object printcharfun;
569 {
570 PRINTDECLARE;
571
572 if (NILP (printcharfun))
573 printcharfun = Vstandard_output;
574 PRINTPREPARE;
575 PRINTCHAR ('\n');
576 PRINTFINISH;
577 return Qt;
578 }
579
580 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
581 "Output the printed representation of OBJECT, any Lisp object.\n\
582 Quoting characters are printed when needed to make output that `read'\n\
583 can handle, whenever this is possible.\n\
584 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
585 (object, printcharfun)
586 Lisp_Object object, printcharfun;
587 {
588 PRINTDECLARE;
589
590 #ifdef MAX_PRINT_CHARS
591 max_print = 0;
592 #endif /* MAX_PRINT_CHARS */
593 if (NILP (printcharfun))
594 printcharfun = Vstandard_output;
595 PRINTPREPARE;
596 print_depth = 0;
597 print (object, printcharfun, 1);
598 PRINTFINISH;
599 return object;
600 }
601
602 /* a buffer which is used to hold output being built by prin1-to-string */
603 Lisp_Object Vprin1_to_string_buffer;
604
605 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
606 "Return a string containing the printed representation of OBJECT,\n\
607 any Lisp object. Quoting characters are used when needed to make output\n\
608 that `read' can handle, whenever this is possible, unless the optional\n\
609 second argument NOESCAPE is non-nil.")
610 (object, noescape)
611 Lisp_Object object, noescape;
612 {
613 PRINTDECLARE;
614 Lisp_Object printcharfun;
615 struct gcpro gcpro1, gcpro2;
616 Lisp_Object tem;
617
618 /* Save and restore this--we are altering a buffer
619 but we don't want to deactivate the mark just for that.
620 No need for specbind, since errors deactivate the mark. */
621 tem = Vdeactivate_mark;
622 GCPRO2 (object, tem);
623
624 printcharfun = Vprin1_to_string_buffer;
625 PRINTPREPARE;
626 print_depth = 0;
627 print (object, printcharfun, NILP (noescape));
628 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
629 PRINTFINISH;
630 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
631 object = Fbuffer_string ();
632
633 Ferase_buffer ();
634 set_buffer_internal (old);
635
636 Vdeactivate_mark = tem;
637 UNGCPRO;
638
639 return object;
640 }
641
642 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
643 "Output the printed representation of OBJECT, any Lisp object.\n\
644 No quoting characters are used; no delimiters are printed around\n\
645 the contents of strings.\n\
646 Output stream is PRINTCHARFUN, or value of standard-output (which see).")
647 (object, printcharfun)
648 Lisp_Object object, printcharfun;
649 {
650 PRINTDECLARE;
651
652 if (NILP (printcharfun))
653 printcharfun = Vstandard_output;
654 PRINTPREPARE;
655 print_depth = 0;
656 print (object, printcharfun, 0);
657 PRINTFINISH;
658 return object;
659 }
660
661 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
662 "Output the printed representation of OBJECT, with newlines around it.\n\
663 Quoting characters are printed when needed to make output that `read'\n\
664 can handle, whenever this is possible.\n\
665 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
666 (object, printcharfun)
667 Lisp_Object object, printcharfun;
668 {
669 PRINTDECLARE;
670 struct gcpro gcpro1;
671
672 #ifdef MAX_PRINT_CHARS
673 print_chars = 0;
674 max_print = MAX_PRINT_CHARS;
675 #endif /* MAX_PRINT_CHARS */
676 if (NILP (printcharfun))
677 printcharfun = Vstandard_output;
678 GCPRO1 (object);
679 PRINTPREPARE;
680 print_depth = 0;
681 PRINTCHAR ('\n');
682 print (object, printcharfun, 1);
683 PRINTCHAR ('\n');
684 PRINTFINISH;
685 #ifdef MAX_PRINT_CHARS
686 max_print = 0;
687 print_chars = 0;
688 #endif /* MAX_PRINT_CHARS */
689 UNGCPRO;
690 return object;
691 }
692
693 /* The subroutine object for external-debugging-output is kept here
694 for the convenience of the debugger. */
695 Lisp_Object Qexternal_debugging_output;
696
697 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
698 "Write CHARACTER to stderr.\n\
699 You can call print while debugging emacs, and pass it this function\n\
700 to make it write to the debugging output.\n")
701 (character)
702 Lisp_Object character;
703 {
704 CHECK_NUMBER (character, 0);
705 putc (XINT (character), stderr);
706
707 return character;
708 }
709
710 /* This is the interface for debugging printing. */
711
712 void
713 debug_print (arg)
714 Lisp_Object arg;
715 {
716 Fprin1 (arg, Qexternal_debugging_output);
717 fprintf (stderr, "\r\n");
718 }
719 \f
720 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
721 1, 1, 0,
722 "Convert an error value (ERROR-SYMBOL . DATA) to an error message.")
723 (obj)
724 Lisp_Object obj;
725 {
726 struct buffer *old = current_buffer;
727 Lisp_Object original, printcharfun, value;
728 struct gcpro gcpro1;
729
730 print_error_message (obj, Vprin1_to_string_buffer, NULL);
731
732 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
733 value = Fbuffer_string ();
734
735 GCPRO1 (value);
736 Ferase_buffer ();
737 set_buffer_internal (old);
738 UNGCPRO;
739
740 return value;
741 }
742
743 /* Print an error message for the error DATA
744 onto Lisp output stream STREAM (suitable for the print functions). */
745
746 print_error_message (data, stream)
747 Lisp_Object data, stream;
748 {
749 Lisp_Object errname, errmsg, file_error, tail;
750 struct gcpro gcpro1;
751 int i;
752
753 errname = Fcar (data);
754
755 if (EQ (errname, Qerror))
756 {
757 data = Fcdr (data);
758 if (!CONSP (data)) data = Qnil;
759 errmsg = Fcar (data);
760 file_error = Qnil;
761 }
762 else
763 {
764 errmsg = Fget (errname, Qerror_message);
765 file_error = Fmemq (Qfile_error,
766 Fget (errname, Qerror_conditions));
767 }
768
769 /* Print an error message including the data items. */
770
771 tail = Fcdr_safe (data);
772 GCPRO1 (tail);
773
774 /* For file-error, make error message by concatenating
775 all the data items. They are all strings. */
776 if (!NILP (file_error) && !NILP (tail))
777 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr;
778
779 if (STRINGP (errmsg))
780 Fprinc (errmsg, stream);
781 else
782 write_string_1 ("peculiar error", -1, stream);
783
784 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
785 {
786 write_string_1 (i ? ", " : ": ", 2, stream);
787 if (!NILP (file_error))
788 Fprinc (Fcar (tail), stream);
789 else
790 Fprin1 (Fcar (tail), stream);
791 }
792 UNGCPRO;
793 }
794 \f
795 #ifdef LISP_FLOAT_TYPE
796
797 /*
798 * The buffer should be at least as large as the max string size of the
799 * largest float, printed in the biggest notation. This is undoubtedly
800 * 20d float_output_format, with the negative of the C-constant "HUGE"
801 * from <math.h>.
802 *
803 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
804 *
805 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
806 * case of -1e307 in 20d float_output_format. What is one to do (short of
807 * re-writing _doprnt to be more sane)?
808 * -wsr
809 */
810
811 void
812 float_to_string (buf, data)
813 unsigned char *buf;
814 double data;
815 {
816 unsigned char *cp;
817 int width;
818
819 if (NILP (Vfloat_output_format)
820 || !STRINGP (Vfloat_output_format))
821 lose:
822 {
823 sprintf (buf, "%.17g", data);
824 width = -1;
825 }
826 else /* oink oink */
827 {
828 /* Check that the spec we have is fully valid.
829 This means not only valid for printf,
830 but meant for floats, and reasonable. */
831 cp = XSTRING (Vfloat_output_format)->data;
832
833 if (cp[0] != '%')
834 goto lose;
835 if (cp[1] != '.')
836 goto lose;
837
838 cp += 2;
839
840 /* Check the width specification. */
841 width = -1;
842 if ('0' <= *cp && *cp <= '9')
843 {
844 width = 0;
845 do
846 width = (width * 10) + (*cp++ - '0');
847 while (*cp >= '0' && *cp <= '9');
848
849 /* A precision of zero is valid only for %f. */
850 if (width > DBL_DIG
851 || (width == 0 && *cp != 'f'))
852 goto lose;
853 }
854
855 if (*cp != 'e' && *cp != 'f' && *cp != 'g')
856 goto lose;
857
858 if (cp[1] != 0)
859 goto lose;
860
861 sprintf (buf, XSTRING (Vfloat_output_format)->data, data);
862 }
863
864 /* Make sure there is a decimal point with digit after, or an
865 exponent, so that the value is readable as a float. But don't do
866 this with "%.0f"; it's valid for that not to produce a decimal
867 point. Note that width can be 0 only for %.0f. */
868 if (width != 0)
869 {
870 for (cp = buf; *cp; cp++)
871 if ((*cp < '0' || *cp > '9') && *cp != '-')
872 break;
873
874 if (*cp == '.' && cp[1] == 0)
875 {
876 cp[1] = '0';
877 cp[2] = 0;
878 }
879
880 if (*cp == 0)
881 {
882 *cp++ = '.';
883 *cp++ = '0';
884 *cp++ = 0;
885 }
886 }
887 }
888 #endif /* LISP_FLOAT_TYPE */
889 \f
890 static void
891 print (obj, printcharfun, escapeflag)
892 Lisp_Object obj;
893 register Lisp_Object printcharfun;
894 int escapeflag;
895 {
896 char buf[30];
897
898 QUIT;
899
900 #if 1 /* I'm not sure this is really worth doing. */
901 /* Detect circularities and truncate them.
902 No need to offer any alternative--this is better than an error. */
903 if (CONSP (obj) || VECTORP (obj) || COMPILEDP (obj))
904 {
905 int i;
906 for (i = 0; i < print_depth; i++)
907 if (EQ (obj, being_printed[i]))
908 {
909 sprintf (buf, "#%d", i);
910 strout (buf, -1, printcharfun);
911 return;
912 }
913 }
914 #endif
915
916 being_printed[print_depth] = obj;
917 print_depth++;
918
919 if (print_depth > PRINT_CIRCLE)
920 error ("Apparently circular structure being printed");
921 #ifdef MAX_PRINT_CHARS
922 if (max_print && print_chars > max_print)
923 {
924 PRINTCHAR ('\n');
925 print_chars = 0;
926 }
927 #endif /* MAX_PRINT_CHARS */
928
929 switch (XGCTYPE (obj))
930 {
931 case Lisp_Int:
932 if (sizeof (int) == sizeof (EMACS_INT))
933 sprintf (buf, "%d", XINT (obj));
934 else if (sizeof (long) == sizeof (EMACS_INT))
935 sprintf (buf, "%ld", XINT (obj));
936 else
937 abort ();
938 strout (buf, -1, printcharfun);
939 break;
940
941 #ifdef LISP_FLOAT_TYPE
942 case Lisp_Float:
943 {
944 char pigbuf[350]; /* see comments in float_to_string */
945
946 float_to_string (pigbuf, XFLOAT(obj)->data);
947 strout (pigbuf, -1, printcharfun);
948 }
949 break;
950 #endif
951
952 case Lisp_String:
953 if (!escapeflag)
954 print_string (obj, printcharfun);
955 else
956 {
957 register int i;
958 register unsigned char c;
959 struct gcpro gcpro1;
960
961 GCPRO1 (obj);
962
963 #ifdef USE_TEXT_PROPERTIES
964 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
965 {
966 PRINTCHAR ('#');
967 PRINTCHAR ('(');
968 }
969 #endif
970
971 PRINTCHAR ('\"');
972 for (i = 0; i < XSTRING (obj)->size; i++)
973 {
974 QUIT;
975 c = XSTRING (obj)->data[i];
976 if (c == '\n' && print_escape_newlines)
977 {
978 PRINTCHAR ('\\');
979 PRINTCHAR ('n');
980 }
981 else if (c == '\f' && print_escape_newlines)
982 {
983 PRINTCHAR ('\\');
984 PRINTCHAR ('f');
985 }
986 else
987 {
988 if (c == '\"' || c == '\\')
989 PRINTCHAR ('\\');
990 PRINTCHAR (c);
991 }
992 }
993 PRINTCHAR ('\"');
994
995 #ifdef USE_TEXT_PROPERTIES
996 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
997 {
998 traverse_intervals (XSTRING (obj)->intervals,
999 0, 0, print_interval, printcharfun);
1000 PRINTCHAR (')');
1001 }
1002 #endif
1003
1004 UNGCPRO;
1005 }
1006 break;
1007
1008 case Lisp_Symbol:
1009 {
1010 register int confusing;
1011 register unsigned char *p = XSYMBOL (obj)->name->data;
1012 register unsigned char *end = p + XSYMBOL (obj)->name->size;
1013 register unsigned char c;
1014 int i;
1015
1016 if (p != end && (*p == '-' || *p == '+')) p++;
1017 if (p == end)
1018 confusing = 0;
1019 else
1020 {
1021 while (p != end && ((*p >= '0' && *p <= '9')
1022 /* Needed for \2e10. */
1023 || *p == 'e'))
1024 p++;
1025 confusing = (end == p);
1026 }
1027
1028 /* If we print an uninterned symbol as part of a complex object and
1029 the flag print-gensym is non-nil, prefix it with #n= to read the
1030 object back with the #n# reader syntax later if needed. */
1031 if (print_gensym && NILP (XSYMBOL (obj)->obarray))
1032 {
1033 if (print_depth > 1)
1034 {
1035 Lisp_Object tem;
1036 tem = Fassq (obj, printed_gensyms);
1037 if (CONSP (tem))
1038 {
1039 PRINTCHAR ('#');
1040 print (XCDR (tem), printcharfun, escapeflag);
1041 PRINTCHAR ('#');
1042 break;
1043 }
1044 else
1045 {
1046 if (CONSP (printed_gensyms))
1047 XSETFASTINT (tem, XCDR (XCAR (printed_gensyms)) + 1);
1048 else
1049 XSETFASTINT (tem, 1);
1050 printed_gensyms = Fcons (Fcons (obj, tem), printed_gensyms);
1051
1052 PRINTCHAR ('#');
1053 print (tem, printcharfun, escapeflag);
1054 PRINTCHAR ('=');
1055 }
1056 }
1057 PRINTCHAR ('#');
1058 PRINTCHAR (':');
1059 }
1060
1061 for (i = 0; i < XSYMBOL (obj)->name->size; i++)
1062 {
1063 QUIT;
1064 c = XSYMBOL (obj)->name->data[i];
1065
1066 if (escapeflag)
1067 {
1068 if (c == '\"' || c == '\\' || c == '\''
1069 || c == ';' || c == '#' || c == '(' || c == ')'
1070 || c == ',' || c =='.' || c == '`'
1071 || c == '[' || c == ']' || c == '?' || c <= 040
1072 || confusing)
1073 PRINTCHAR ('\\'), confusing = 0;
1074 }
1075 PRINTCHAR (c);
1076 }
1077 }
1078 break;
1079
1080 case Lisp_Cons:
1081 /* If deeper than spec'd depth, print placeholder. */
1082 if (INTEGERP (Vprint_level)
1083 && print_depth > XINT (Vprint_level))
1084 strout ("...", -1, printcharfun);
1085 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1086 && (EQ (XCAR (obj), Qquote)))
1087 {
1088 PRINTCHAR ('\'');
1089 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1090 }
1091 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1092 && (EQ (XCAR (obj), Qfunction)))
1093 {
1094 PRINTCHAR ('#');
1095 PRINTCHAR ('\'');
1096 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1097 }
1098 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1099 && ((EQ (XCAR (obj), Qbackquote)
1100 || EQ (XCAR (obj), Qcomma)
1101 || EQ (XCAR (obj), Qcomma_at)
1102 || EQ (XCAR (obj), Qcomma_dot))))
1103 {
1104 print (XCAR (obj), printcharfun, 0);
1105 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1106 }
1107 else
1108 {
1109 PRINTCHAR ('(');
1110 {
1111 register int i = 0;
1112 register int max = 0;
1113
1114 if (INTEGERP (Vprint_length))
1115 max = XINT (Vprint_length);
1116 /* Could recognize circularities in cdrs here,
1117 but that would make printing of long lists quadratic.
1118 It's not worth doing. */
1119 while (CONSP (obj))
1120 {
1121 if (i++)
1122 PRINTCHAR (' ');
1123 if (max && i > max)
1124 {
1125 strout ("...", 3, printcharfun);
1126 break;
1127 }
1128 print (XCAR (obj), printcharfun, escapeflag);
1129 obj = XCDR (obj);
1130 }
1131 }
1132 if (!NILP (obj))
1133 {
1134 strout (" . ", 3, printcharfun);
1135 print (obj, printcharfun, escapeflag);
1136 }
1137 PRINTCHAR (')');
1138 }
1139 break;
1140
1141 case Lisp_Vectorlike:
1142 if (PROCESSP (obj))
1143 {
1144 if (escapeflag)
1145 {
1146 strout ("#<process ", -1, printcharfun);
1147 print_string (XPROCESS (obj)->name, printcharfun);
1148 PRINTCHAR ('>');
1149 }
1150 else
1151 print_string (XPROCESS (obj)->name, printcharfun);
1152 }
1153 else if (BOOL_VECTOR_P (obj))
1154 {
1155 register int i;
1156 register unsigned char c;
1157 struct gcpro gcpro1;
1158 int size_in_chars
1159 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
1160
1161 GCPRO1 (obj);
1162
1163 PRINTCHAR ('#');
1164 PRINTCHAR ('&');
1165 sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
1166 strout (buf, -1, printcharfun);
1167 PRINTCHAR ('\"');
1168
1169 /* Don't print more characters than the specified maximum. */
1170 if (INTEGERP (Vprint_length)
1171 && XINT (Vprint_length) < size_in_chars)
1172 size_in_chars = XINT (Vprint_length);
1173
1174 for (i = 0; i < size_in_chars; i++)
1175 {
1176 QUIT;
1177 c = XBOOL_VECTOR (obj)->data[i];
1178 if (c == '\n' && print_escape_newlines)
1179 {
1180 PRINTCHAR ('\\');
1181 PRINTCHAR ('n');
1182 }
1183 else if (c == '\f' && print_escape_newlines)
1184 {
1185 PRINTCHAR ('\\');
1186 PRINTCHAR ('f');
1187 }
1188 else
1189 {
1190 if (c == '\"' || c == '\\')
1191 PRINTCHAR ('\\');
1192 PRINTCHAR (c);
1193 }
1194 }
1195 PRINTCHAR ('\"');
1196
1197 UNGCPRO;
1198 }
1199 else if (SUBRP (obj))
1200 {
1201 strout ("#<subr ", -1, printcharfun);
1202 strout (XSUBR (obj)->symbol_name, -1, printcharfun);
1203 PRINTCHAR ('>');
1204 }
1205 #ifndef standalone
1206 else if (WINDOWP (obj))
1207 {
1208 strout ("#<window ", -1, printcharfun);
1209 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number));
1210 strout (buf, -1, printcharfun);
1211 if (!NILP (XWINDOW (obj)->buffer))
1212 {
1213 strout (" on ", -1, printcharfun);
1214 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
1215 }
1216 PRINTCHAR ('>');
1217 }
1218 else if (BUFFERP (obj))
1219 {
1220 if (NILP (XBUFFER (obj)->name))
1221 strout ("#<killed buffer>", -1, printcharfun);
1222 else if (escapeflag)
1223 {
1224 strout ("#<buffer ", -1, printcharfun);
1225 print_string (XBUFFER (obj)->name, printcharfun);
1226 PRINTCHAR ('>');
1227 }
1228 else
1229 print_string (XBUFFER (obj)->name, printcharfun);
1230 }
1231 else if (WINDOW_CONFIGURATIONP (obj))
1232 {
1233 strout ("#<window-configuration>", -1, printcharfun);
1234 }
1235 else if (FRAMEP (obj))
1236 {
1237 strout ((FRAME_LIVE_P (XFRAME (obj))
1238 ? "#<frame " : "#<dead frame "),
1239 -1, printcharfun);
1240 print_string (XFRAME (obj)->name, printcharfun);
1241 sprintf (buf, " 0x%lx", (unsigned long) (XFRAME (obj)));
1242 strout (buf, -1, printcharfun);
1243 PRINTCHAR ('>');
1244 }
1245 #endif /* not standalone */
1246 else
1247 {
1248 int size = XVECTOR (obj)->size;
1249 if (COMPILEDP (obj))
1250 {
1251 PRINTCHAR ('#');
1252 size &= PSEUDOVECTOR_SIZE_MASK;
1253 }
1254 if (CHAR_TABLE_P (obj))
1255 {
1256 /* We print a char-table as if it were a vector,
1257 lumping the parent and default slots in with the
1258 character slots. But we add #^ as a prefix. */
1259 PRINTCHAR ('#');
1260 PRINTCHAR ('^');
1261 size &= PSEUDOVECTOR_SIZE_MASK;
1262 }
1263 if (size & PSEUDOVECTOR_FLAG)
1264 goto badtype;
1265
1266 PRINTCHAR ('[');
1267 {
1268 register int i;
1269 register Lisp_Object tem;
1270
1271 /* Don't print more elements than the specified maximum. */
1272 if (INTEGERP (Vprint_length)
1273 && XINT (Vprint_length) < size)
1274 size = XINT (Vprint_length);
1275
1276 for (i = 0; i < size; i++)
1277 {
1278 if (i) PRINTCHAR (' ');
1279 tem = XVECTOR (obj)->contents[i];
1280 print (tem, printcharfun, escapeflag);
1281 }
1282 }
1283 PRINTCHAR (']');
1284 }
1285 break;
1286
1287 #ifndef standalone
1288 case Lisp_Misc:
1289 switch (XMISCTYPE (obj))
1290 {
1291 case Lisp_Misc_Marker:
1292 strout ("#<marker ", -1, printcharfun);
1293 #if 0
1294 /* Do you think this is necessary? */
1295 if (XMARKER (obj)->insertion_type != 0)
1296 strout ("(before-insertion) ", -1, printcharfun);
1297 #endif /* 0 */
1298 if (!(XMARKER (obj)->buffer))
1299 strout ("in no buffer", -1, printcharfun);
1300 else
1301 {
1302 sprintf (buf, "at %d", marker_position (obj));
1303 strout (buf, -1, printcharfun);
1304 strout (" in ", -1, printcharfun);
1305 print_string (XMARKER (obj)->buffer->name, printcharfun);
1306 }
1307 PRINTCHAR ('>');
1308 break;
1309
1310 case Lisp_Misc_Overlay:
1311 strout ("#<overlay ", -1, printcharfun);
1312 if (!(XMARKER (OVERLAY_START (obj))->buffer))
1313 strout ("in no buffer", -1, printcharfun);
1314 else
1315 {
1316 sprintf (buf, "from %d to %d in ",
1317 marker_position (OVERLAY_START (obj)),
1318 marker_position (OVERLAY_END (obj)));
1319 strout (buf, -1, printcharfun);
1320 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
1321 printcharfun);
1322 }
1323 PRINTCHAR ('>');
1324 break;
1325
1326 /* Remaining cases shouldn't happen in normal usage, but let's print
1327 them anyway for the benefit of the debugger. */
1328 case Lisp_Misc_Free:
1329 strout ("#<misc free cell>", -1, printcharfun);
1330 break;
1331
1332 case Lisp_Misc_Intfwd:
1333 sprintf (buf, "#<intfwd to %d>", *XINTFWD (obj)->intvar);
1334 strout (buf, -1, printcharfun);
1335 break;
1336
1337 case Lisp_Misc_Boolfwd:
1338 sprintf (buf, "#<boolfwd to %s>",
1339 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
1340 strout (buf, -1, printcharfun);
1341 break;
1342
1343 case Lisp_Misc_Objfwd:
1344 strout ("#<objfwd to ", -1, printcharfun);
1345 print (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
1346 PRINTCHAR ('>');
1347 break;
1348
1349 case Lisp_Misc_Buffer_Objfwd:
1350 strout ("#<buffer_objfwd to ", -1, printcharfun);
1351 print (*(Lisp_Object *)((char *)current_buffer
1352 + XBUFFER_OBJFWD (obj)->offset),
1353 printcharfun, escapeflag);
1354 PRINTCHAR ('>');
1355 break;
1356
1357 case Lisp_Misc_Kboard_Objfwd:
1358 strout ("#<kboard_objfwd to ", -1, printcharfun);
1359 print (*(Lisp_Object *)((char *) current_kboard
1360 + XKBOARD_OBJFWD (obj)->offset),
1361 printcharfun, escapeflag);
1362 PRINTCHAR ('>');
1363 break;
1364
1365 case Lisp_Misc_Buffer_Local_Value:
1366 strout ("#<buffer_local_value ", -1, printcharfun);
1367 goto do_buffer_local;
1368 case Lisp_Misc_Some_Buffer_Local_Value:
1369 strout ("#<some_buffer_local_value ", -1, printcharfun);
1370 do_buffer_local:
1371 strout ("[realvalue] ", -1, printcharfun);
1372 print (XBUFFER_LOCAL_VALUE (obj)->car, printcharfun, escapeflag);
1373 strout ("[buffer] ", -1, printcharfun);
1374 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->car,
1375 printcharfun, escapeflag);
1376 strout ("[alist-elt] ", -1, printcharfun);
1377 print (XCONS (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->cdr)->car,
1378 printcharfun, escapeflag);
1379 strout ("[default-value] ", -1, printcharfun);
1380 print (XCONS (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->cdr)->cdr,
1381 printcharfun, escapeflag);
1382 PRINTCHAR ('>');
1383 break;
1384
1385 default:
1386 goto badtype;
1387 }
1388 break;
1389 #endif /* standalone */
1390
1391 default:
1392 badtype:
1393 {
1394 /* We're in trouble if this happens!
1395 Probably should just abort () */
1396 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, printcharfun);
1397 if (MISCP (obj))
1398 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
1399 else if (VECTORLIKEP (obj))
1400 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
1401 else
1402 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
1403 strout (buf, -1, printcharfun);
1404 strout (" Save your buffers immediately and please report this bug>",
1405 -1, printcharfun);
1406 }
1407 }
1408
1409 print_depth--;
1410 }
1411 \f
1412 #ifdef USE_TEXT_PROPERTIES
1413
1414 /* Print a description of INTERVAL using PRINTCHARFUN.
1415 This is part of printing a string that has text properties. */
1416
1417 void
1418 print_interval (interval, printcharfun)
1419 INTERVAL interval;
1420 Lisp_Object printcharfun;
1421 {
1422 PRINTCHAR (' ');
1423 print (make_number (interval->position), printcharfun, 1);
1424 PRINTCHAR (' ');
1425 print (make_number (interval->position + LENGTH (interval)),
1426 printcharfun, 1);
1427 PRINTCHAR (' ');
1428 print (interval->plist, printcharfun, 1);
1429 }
1430
1431 #endif /* USE_TEXT_PROPERTIES */
1432 \f
1433 void
1434 syms_of_print ()
1435 {
1436 DEFVAR_LISP ("standard-output", &Vstandard_output,
1437 "Output stream `print' uses by default for outputting a character.\n\
1438 This may be any function of one argument.\n\
1439 It may also be a buffer (output is inserted before point)\n\
1440 or a marker (output is inserted and the marker is advanced)\n\
1441 or the symbol t (output appears in the echo area).");
1442 Vstandard_output = Qt;
1443 Qstandard_output = intern ("standard-output");
1444 staticpro (&Qstandard_output);
1445
1446 #ifdef LISP_FLOAT_TYPE
1447 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
1448 "The format descriptor string used to print floats.\n\
1449 This is a %-spec like those accepted by `printf' in C,\n\
1450 but with some restrictions. It must start with the two characters `%.'.\n\
1451 After that comes an integer precision specification,\n\
1452 and then a letter which controls the format.\n\
1453 The letters allowed are `e', `f' and `g'.\n\
1454 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\
1455 Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\
1456 Use `g' to choose the shorter of those two formats for the number at hand.\n\
1457 The precision in any of these cases is the number of digits following\n\
1458 the decimal point. With `f', a precision of 0 means to omit the\n\
1459 decimal point. 0 is not allowed with `e' or `g'.\n\n\
1460 A value of nil means to use `%.17g'.");
1461 Vfloat_output_format = Qnil;
1462 Qfloat_output_format = intern ("float-output-format");
1463 staticpro (&Qfloat_output_format);
1464 #endif /* LISP_FLOAT_TYPE */
1465
1466 DEFVAR_LISP ("print-length", &Vprint_length,
1467 "Maximum length of list to print before abbreviating.\n\
1468 A value of nil means no limit.");
1469 Vprint_length = Qnil;
1470
1471 DEFVAR_LISP ("print-level", &Vprint_level,
1472 "Maximum depth of list nesting to print before abbreviating.\n\
1473 A value of nil means no limit.");
1474 Vprint_level = Qnil;
1475
1476 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
1477 "Non-nil means print newlines in strings as backslash-n.\n\
1478 Also print formfeeds as backslash-f.");
1479 print_escape_newlines = 0;
1480
1481 DEFVAR_BOOL ("print-quoted", &print_quoted,
1482 "Non-nil means print quoted forms with reader syntax.\n\
1483 I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and, backquoted\n\
1484 forms print in the new syntax.");
1485 print_quoted = 0;
1486
1487 DEFVAR_BOOL ("print-gensym", &print_gensym,
1488 "Non-nil means print uninterned symbols so they will read as uninterned.\n\
1489 I.e., the value of (make-symbol "foobar") prints as #:foobar.");
1490 print_gensym = 0;
1491
1492 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
1493 staticpro (&Vprin1_to_string_buffer);
1494
1495 defsubr (&Sprin1);
1496 defsubr (&Sprin1_to_string);
1497 defsubr (&Serror_message_string);
1498 defsubr (&Sprinc);
1499 defsubr (&Sprint);
1500 defsubr (&Sterpri);
1501 defsubr (&Swrite_char);
1502 defsubr (&Sexternal_debugging_output);
1503
1504 Qexternal_debugging_output = intern ("external-debugging-output");
1505 staticpro (&Qexternal_debugging_output);
1506
1507 Qprint_escape_newlines = intern ("print-escape-newlines");
1508 staticpro (&Qprint_escape_newlines);
1509
1510 staticpro (&printed_gensyms);
1511 printed_gensyms = Qnil;
1512
1513 #ifndef standalone
1514 defsubr (&Swith_output_to_temp_buffer);
1515 #endif /* not standalone */
1516 }