]> code.delx.au - gnu-emacs/blob - src/print.c
(buffer_posn_from_coords): Adjust prototype.
[gnu-emacs] / src / print.c
1 /* Lisp object printing and output streams.
2 Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 98, 1999, 2000
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "buffer.h"
27 #include "charset.h"
28 #include "keyboard.h"
29 #include "frame.h"
30 #include "window.h"
31 #include "process.h"
32 #include "dispextern.h"
33 #include "termchar.h"
34 #include "intervals.h"
35
36 Lisp_Object Vstandard_output, Qstandard_output;
37
38 Lisp_Object Qtemp_buffer_setup_hook;
39
40 /* These are used to print like we read. */
41 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
42
43 Lisp_Object Vfloat_output_format, Qfloat_output_format;
44
45 /* Work around a problem that happens because math.h on hpux 7
46 defines two static variables--which, in Emacs, are not really static,
47 because `static' is defined as nothing. The problem is that they are
48 defined both here and in lread.c.
49 These macros prevent the name conflict. */
50 #if defined (HPUX) && !defined (HPUX8)
51 #define _MAXLDBL print_maxldbl
52 #define _NMAXLDBL print_nmaxldbl
53 #endif
54
55 #include <math.h>
56
57 #if STDC_HEADERS
58 #include <float.h>
59 #endif
60
61 /* Default to values appropriate for IEEE floating point. */
62 #ifndef FLT_RADIX
63 #define FLT_RADIX 2
64 #endif
65 #ifndef DBL_MANT_DIG
66 #define DBL_MANT_DIG 53
67 #endif
68 #ifndef DBL_DIG
69 #define DBL_DIG 15
70 #endif
71 #ifndef DBL_MIN
72 #define DBL_MIN 2.2250738585072014e-308
73 #endif
74
75 #ifdef DBL_MIN_REPLACEMENT
76 #undef DBL_MIN
77 #define DBL_MIN DBL_MIN_REPLACEMENT
78 #endif
79
80 /* Define DOUBLE_DIGITS_BOUND, an upper bound on the number of decimal digits
81 needed to express a float without losing information.
82 The general-case formula is valid for the usual case, IEEE floating point,
83 but many compilers can't optimize the formula to an integer constant,
84 so make a special case for it. */
85 #if FLT_RADIX == 2 && DBL_MANT_DIG == 53
86 #define DOUBLE_DIGITS_BOUND 17 /* IEEE floating point */
87 #else
88 #define DOUBLE_DIGITS_BOUND ((int) ceil (log10 (pow (FLT_RADIX, DBL_MANT_DIG))))
89 #endif
90
91 /* Avoid actual stack overflow in print. */
92 int print_depth;
93
94 /* Detect most circularities to print finite output. */
95 #define PRINT_CIRCLE 200
96 Lisp_Object being_printed[PRINT_CIRCLE];
97
98 /* When printing into a buffer, first we put the text in this
99 block, then insert it all at once. */
100 char *print_buffer;
101
102 /* Size allocated in print_buffer. */
103 int print_buffer_size;
104 /* Chars stored in print_buffer. */
105 int print_buffer_pos;
106 /* Bytes stored in print_buffer. */
107 int print_buffer_pos_byte;
108
109 /* Maximum length of list to print in full; noninteger means
110 effectively infinity */
111
112 Lisp_Object Vprint_length;
113
114 /* Maximum depth of list to print in full; noninteger means
115 effectively infinity. */
116
117 Lisp_Object Vprint_level;
118
119 /* Nonzero means print newlines in strings as \n. */
120
121 int print_escape_newlines;
122
123 /* Nonzero means to print single-byte non-ascii characters in strings as
124 octal escapes. */
125
126 int print_escape_nonascii;
127
128 /* Nonzero means to print multibyte characters in strings as hex escapes. */
129
130 int print_escape_multibyte;
131
132 Lisp_Object Qprint_escape_newlines;
133 Lisp_Object Qprint_escape_multibyte, Qprint_escape_nonascii;
134
135 /* Nonzero means print (quote foo) forms as 'foo, etc. */
136
137 int print_quoted;
138
139 /* Non-nil means print #: before uninterned symbols. */
140
141 Lisp_Object Vprint_gensym;
142
143 /* Non-nil means print recursive structures using #n= and #n# syntax. */
144
145 Lisp_Object Vprint_circle;
146
147 /* Non-nil means keep continuous number for #n= and #n# syntax
148 between several print functions. */
149
150 Lisp_Object Vprint_continuous_numbering;
151
152 /* Vprint_number_table is a vector like [OBJ1 STAT1 OBJ2 STAT2 ...],
153 where OBJn are objects going to be printed, and STATn are their status,
154 which may be different meanings during process. See the comments of
155 the functions print and print_preprocess for details.
156 print_number_index keeps the last position the next object should be added,
157 twice of which is the actual vector position in Vprint_number_table. */
158 int print_number_index;
159 Lisp_Object Vprint_number_table;
160
161 /* PRINT_NUMBER_OBJECT returns the I'th object in Vprint_number_table TABLE.
162 PRINT_NUMBER_STATUS returns the status of the I'th object in TABLE.
163 See the comment of the variable Vprint_number_table. */
164 #define PRINT_NUMBER_OBJECT(table,i) XVECTOR ((table))->contents[(i) * 2]
165 #define PRINT_NUMBER_STATUS(table,i) XVECTOR ((table))->contents[(i) * 2 + 1]
166
167 /* Nonzero means print newline to stdout before next minibuffer message.
168 Defined in xdisp.c */
169
170 extern int noninteractive_need_newline;
171
172 extern int minibuffer_auto_raise;
173
174 #ifdef MAX_PRINT_CHARS
175 static int print_chars;
176 static int max_print;
177 #endif /* MAX_PRINT_CHARS */
178
179 void print_interval ();
180
181 \f
182 /* Low level output routines for characters and strings */
183
184 /* Lisp functions to do output using a stream
185 must have the stream in a variable called printcharfun
186 and must start with PRINTPREPARE, end with PRINTFINISH,
187 and use PRINTDECLARE to declare common variables.
188 Use PRINTCHAR to output one character,
189 or call strout to output a block of characters. */
190
191 #define PRINTDECLARE \
192 struct buffer *old = current_buffer; \
193 int old_point = -1, start_point = -1; \
194 int old_point_byte = -1, start_point_byte = -1; \
195 int specpdl_count = specpdl_ptr - specpdl; \
196 int free_print_buffer = 0; \
197 int multibyte = !NILP (current_buffer->enable_multibyte_characters); \
198 Lisp_Object original
199
200 #define PRINTPREPARE \
201 original = printcharfun; \
202 if (NILP (printcharfun)) printcharfun = Qt; \
203 if (BUFFERP (printcharfun)) \
204 { \
205 if (XBUFFER (printcharfun) != current_buffer) \
206 Fset_buffer (printcharfun); \
207 printcharfun = Qnil; \
208 } \
209 if (MARKERP (printcharfun)) \
210 { \
211 if (!(XMARKER (original)->buffer)) \
212 error ("Marker does not point anywhere"); \
213 if (XMARKER (original)->buffer != current_buffer) \
214 set_buffer_internal (XMARKER (original)->buffer); \
215 old_point = PT; \
216 old_point_byte = PT_BYTE; \
217 SET_PT_BOTH (marker_position (printcharfun), \
218 marker_byte_position (printcharfun)); \
219 start_point = PT; \
220 start_point_byte = PT_BYTE; \
221 printcharfun = Qnil; \
222 } \
223 if (NILP (printcharfun)) \
224 { \
225 Lisp_Object string; \
226 if (NILP (current_buffer->enable_multibyte_characters) \
227 && ! print_escape_multibyte) \
228 specbind (Qprint_escape_multibyte, Qt); \
229 if (! NILP (current_buffer->enable_multibyte_characters) \
230 && ! print_escape_nonascii) \
231 specbind (Qprint_escape_nonascii, Qt); \
232 if (print_buffer != 0) \
233 { \
234 string = make_string_from_bytes (print_buffer, \
235 print_buffer_pos, \
236 print_buffer_pos_byte); \
237 record_unwind_protect (print_unwind, string); \
238 } \
239 else \
240 { \
241 print_buffer_size = 1000; \
242 print_buffer = (char *) xmalloc (print_buffer_size); \
243 free_print_buffer = 1; \
244 } \
245 print_buffer_pos = 0; \
246 print_buffer_pos_byte = 0; \
247 } \
248 if (EQ (printcharfun, Qt) && ! noninteractive) \
249 setup_echo_area_for_printing (multibyte);
250
251 #define PRINTFINISH \
252 if (NILP (printcharfun)) \
253 { \
254 if (print_buffer_pos != print_buffer_pos_byte \
255 && NILP (current_buffer->enable_multibyte_characters)) \
256 { \
257 unsigned char *temp \
258 = (unsigned char *) alloca (print_buffer_pos + 1); \
259 copy_text (print_buffer, temp, print_buffer_pos_byte, \
260 1, 0); \
261 insert_1_both (temp, print_buffer_pos, \
262 print_buffer_pos, 0, 1, 0); \
263 } \
264 else \
265 insert_1_both (print_buffer, print_buffer_pos, \
266 print_buffer_pos_byte, 0, 1, 0); \
267 } \
268 if (free_print_buffer) \
269 { \
270 xfree (print_buffer); \
271 print_buffer = 0; \
272 } \
273 unbind_to (specpdl_count, Qnil); \
274 if (MARKERP (original)) \
275 set_marker_both (original, Qnil, PT, PT_BYTE); \
276 if (old_point >= 0) \
277 SET_PT_BOTH (old_point + (old_point >= start_point \
278 ? PT - start_point : 0), \
279 old_point_byte + (old_point_byte >= start_point_byte \
280 ? PT_BYTE - start_point_byte : 0)); \
281 if (old != current_buffer) \
282 set_buffer_internal (old);
283
284 #define PRINTCHAR(ch) printchar (ch, printcharfun)
285
286 /* This is used to restore the saved contents of print_buffer
287 when there is a recursive call to print. */
288
289 static Lisp_Object
290 print_unwind (saved_text)
291 Lisp_Object saved_text;
292 {
293 bcopy (XSTRING (saved_text)->data, print_buffer, XSTRING (saved_text)->size);
294 return Qnil;
295 }
296
297
298 /* Print character CH using method FUN. FUN nil means print to
299 print_buffer. FUN t means print to echo area or stdout if
300 non-interactive. If FUN is neither nil nor t, call FUN with CH as
301 argument. */
302
303 static void
304 printchar (ch, fun)
305 unsigned int ch;
306 Lisp_Object fun;
307 {
308 #ifdef MAX_PRINT_CHARS
309 if (max_print)
310 print_chars++;
311 #endif /* MAX_PRINT_CHARS */
312
313 if (!NILP (fun) && !EQ (fun, Qt))
314 call1 (fun, make_number (ch));
315 else
316 {
317 unsigned char str[MAX_MULTIBYTE_LENGTH];
318 int len = CHAR_STRING (ch, str);
319
320 QUIT;
321
322 if (NILP (fun))
323 {
324 if (print_buffer_pos_byte + len >= print_buffer_size)
325 print_buffer = (char *) xrealloc (print_buffer,
326 print_buffer_size *= 2);
327 bcopy (str, print_buffer + print_buffer_pos_byte, len);
328 print_buffer_pos += 1;
329 print_buffer_pos_byte += len;
330 }
331 else if (noninteractive)
332 {
333 fwrite (str, 1, len, stdout);
334 noninteractive_need_newline = 1;
335 }
336 else
337 {
338 int multibyte_p
339 = !NILP (current_buffer->enable_multibyte_characters);
340
341 setup_echo_area_for_printing (multibyte_p);
342 insert_char (ch);
343 message_dolog (str, len, 0, multibyte_p);
344 }
345 }
346 }
347
348
349 /* Output SIZE characters, SIZE_BYTE bytes from string PTR using
350 method PRINTCHARFUN. If SIZE < 0, use the string length of PTR for
351 both SIZE and SIZE_BYTE. PRINTCHARFUN nil means output to
352 print_buffer. PRINTCHARFUN t means output to the echo area or to
353 stdout if non-interactive. If neither nil nor t, call Lisp
354 function PRINTCHARFUN for each character printed. MULTIBYTE
355 non-zero means PTR contains multibyte characters. */
356
357 static void
358 strout (ptr, size, size_byte, printcharfun, multibyte)
359 char *ptr;
360 int size, size_byte;
361 Lisp_Object printcharfun;
362 int multibyte;
363 {
364 if (size < 0)
365 size_byte = size = strlen (ptr);
366
367 if (NILP (printcharfun))
368 {
369 if (print_buffer_pos_byte + size_byte > print_buffer_size)
370 {
371 print_buffer_size = print_buffer_size * 2 + size_byte;
372 print_buffer = (char *) xrealloc (print_buffer,
373 print_buffer_size);
374 }
375 bcopy (ptr, print_buffer + print_buffer_pos_byte, size_byte);
376 print_buffer_pos += size;
377 print_buffer_pos_byte += size_byte;
378
379 #ifdef MAX_PRINT_CHARS
380 if (max_print)
381 print_chars += size;
382 #endif /* MAX_PRINT_CHARS */
383 }
384 else if (noninteractive && EQ (printcharfun, Qt))
385 {
386 fwrite (ptr, 1, size_byte, stdout);
387 noninteractive_need_newline = 1;
388 }
389 else if (EQ (printcharfun, Qt))
390 {
391 /* Output to echo area. We're trying to avoid a little overhead
392 here, that's the reason we don't call printchar to do the
393 job. */
394 int i;
395 int multibyte_p
396 = !NILP (current_buffer->enable_multibyte_characters);
397
398 setup_echo_area_for_printing (multibyte_p);
399 message_dolog (ptr, size_byte, 0, multibyte_p);
400
401 if (size == size_byte)
402 {
403 for (i = 0; i < size; ++i)
404 insert_char (*ptr++);
405 }
406 else
407 {
408 int len;
409 for (i = 0; i < size_byte; i += len)
410 {
411 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
412 insert_char (ch);
413 }
414 }
415
416 #ifdef MAX_PRINT_CHARS
417 if (max_print)
418 print_chars += size;
419 #endif /* MAX_PRINT_CHARS */
420 }
421 else
422 {
423 /* PRINTCHARFUN is a Lisp function. */
424 int i = 0;
425
426 if (size == size_byte)
427 {
428 while (i < size_byte)
429 {
430 int ch = ptr[i++];
431 PRINTCHAR (ch);
432 }
433 }
434 else
435 {
436 while (i < size_byte)
437 {
438 /* Here, we must convert each multi-byte form to the
439 corresponding character code before handing it to
440 PRINTCHAR. */
441 int len;
442 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
443 PRINTCHAR (ch);
444 i += len;
445 }
446 }
447 }
448 }
449
450 /* Print the contents of a string STRING using PRINTCHARFUN.
451 It isn't safe to use strout in many cases,
452 because printing one char can relocate. */
453
454 static void
455 print_string (string, printcharfun)
456 Lisp_Object string;
457 Lisp_Object printcharfun;
458 {
459 if (EQ (printcharfun, Qt) || NILP (printcharfun))
460 {
461 int chars;
462
463 if (STRING_MULTIBYTE (string))
464 chars = XSTRING (string)->size;
465 else if (EQ (printcharfun, Qt)
466 ? ! NILP (buffer_defaults.enable_multibyte_characters)
467 : ! NILP (current_buffer->enable_multibyte_characters))
468 {
469 /* If unibyte string STRING contains 8-bit codes, we must
470 convert STRING to a multibyte string containing the same
471 character codes. */
472 Lisp_Object newstr;
473 int bytes;
474
475 chars = STRING_BYTES (XSTRING (string));
476 bytes = parse_str_to_multibyte (XSTRING (string)->data, chars);
477 if (chars < bytes)
478 {
479 newstr = make_uninit_multibyte_string (chars, bytes);
480 bcopy (XSTRING (string)->data, XSTRING (newstr)->data, chars);
481 str_to_multibyte (XSTRING (newstr)->data, bytes, chars);
482 string = newstr;
483 }
484 }
485 else
486 chars = STRING_BYTES (XSTRING (string));
487
488 /* strout is safe for output to a frame (echo area) or to print_buffer. */
489 strout (XSTRING (string)->data,
490 chars, STRING_BYTES (XSTRING (string)),
491 printcharfun, STRING_MULTIBYTE (string));
492 }
493 else
494 {
495 /* Otherwise, string may be relocated by printing one char.
496 So re-fetch the string address for each character. */
497 int i;
498 int size = XSTRING (string)->size;
499 int size_byte = STRING_BYTES (XSTRING (string));
500 struct gcpro gcpro1;
501 GCPRO1 (string);
502 if (size == size_byte)
503 for (i = 0; i < size; i++)
504 PRINTCHAR (XSTRING (string)->data[i]);
505 else
506 for (i = 0; i < size_byte; i++)
507 {
508 /* Here, we must convert each multi-byte form to the
509 corresponding character code before handing it to PRINTCHAR. */
510 int len;
511 int ch = STRING_CHAR_AND_LENGTH (XSTRING (string)->data + i,
512 size_byte - i, len);
513 if (!CHAR_VALID_P (ch, 0))
514 {
515 ch = XSTRING (string)->data[i];
516 len = 1;
517 }
518 PRINTCHAR (ch);
519 i += len;
520 }
521 UNGCPRO;
522 }
523 }
524 \f
525 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
526 "Output character CHARACTER to stream PRINTCHARFUN.\n\
527 PRINTCHARFUN defaults to the value of `standard-output' (which see).")
528 (character, printcharfun)
529 Lisp_Object character, printcharfun;
530 {
531 PRINTDECLARE;
532
533 if (NILP (printcharfun))
534 printcharfun = Vstandard_output;
535 CHECK_NUMBER (character, 0);
536 PRINTPREPARE;
537 PRINTCHAR (XINT (character));
538 PRINTFINISH;
539 return character;
540 }
541
542 /* Used from outside of print.c to print a block of SIZE
543 single-byte chars at DATA on the default output stream.
544 Do not use this on the contents of a Lisp string. */
545
546 void
547 write_string (data, size)
548 char *data;
549 int size;
550 {
551 PRINTDECLARE;
552 Lisp_Object printcharfun;
553
554 printcharfun = Vstandard_output;
555
556 PRINTPREPARE;
557 strout (data, size, size, printcharfun, 0);
558 PRINTFINISH;
559 }
560
561 /* Used from outside of print.c to print a block of SIZE
562 single-byte chars at DATA on a specified stream PRINTCHARFUN.
563 Do not use this on the contents of a Lisp string. */
564
565 void
566 write_string_1 (data, size, printcharfun)
567 char *data;
568 int size;
569 Lisp_Object printcharfun;
570 {
571 PRINTDECLARE;
572
573 PRINTPREPARE;
574 strout (data, size, size, printcharfun, 0);
575 PRINTFINISH;
576 }
577
578
579 void
580 temp_output_buffer_setup (bufname)
581 char *bufname;
582 {
583 int count = specpdl_ptr - specpdl;
584 register struct buffer *old = current_buffer;
585 register Lisp_Object buf;
586
587 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
588
589 Fset_buffer (Fget_buffer_create (build_string (bufname)));
590
591 current_buffer->directory = old->directory;
592 current_buffer->read_only = Qnil;
593 current_buffer->filename = Qnil;
594 current_buffer->undo_list = Qt;
595 current_buffer->overlays_before = Qnil;
596 current_buffer->overlays_after = Qnil;
597 current_buffer->enable_multibyte_characters
598 = buffer_defaults.enable_multibyte_characters;
599 Ferase_buffer ();
600 XSETBUFFER (buf, current_buffer);
601
602 if (!NILP (Vrun_hooks))
603 call1 (Vrun_hooks, Qtemp_buffer_setup_hook);
604
605 unbind_to (count, Qnil);
606
607 specbind (Qstandard_output, buf);
608 }
609
610 Lisp_Object
611 internal_with_output_to_temp_buffer (bufname, function, args)
612 char *bufname;
613 Lisp_Object (*function) P_ ((Lisp_Object));
614 Lisp_Object args;
615 {
616 int count = specpdl_ptr - specpdl;
617 Lisp_Object buf, val;
618 struct gcpro gcpro1;
619
620 GCPRO1 (args);
621 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
622 temp_output_buffer_setup (bufname);
623 buf = Vstandard_output;
624 UNGCPRO;
625
626 val = (*function) (args);
627
628 GCPRO1 (val);
629 temp_output_buffer_show (buf);
630 UNGCPRO;
631
632 return unbind_to (count, val);
633 }
634
635 DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer,
636 1, UNEVALLED, 0,
637 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.\n\
638 The buffer is cleared out initially, and marked as unmodified when done.\n\
639 All output done by BODY is inserted in that buffer by default.\n\
640 The buffer is displayed in another window, but not selected.\n\
641 The value of the last form in BODY is returned.\n\
642 If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\
643 \n\
644 The hook `temp-buffer-setup-hook' is run before BODY,\n\
645 with the buffer BUFNAME temporarily current.\n\
646 The hook `temp-buffer-show-hook' is run after the buffer is displayed,\n\
647 with the buffer temporarily current, and the window that was used\n\
648 to display it temporarily selected.\n\
649 \n\
650 If variable `temp-buffer-show-function' is non-nil, call it at the end\n\
651 to get the buffer displayed instead of just displaying the non-selected\n\
652 buffer and calling the hook. It gets one argument, the buffer to display.")
653 (args)
654 Lisp_Object args;
655 {
656 struct gcpro gcpro1;
657 Lisp_Object name;
658 int count = specpdl_ptr - specpdl;
659 Lisp_Object buf, val;
660
661 GCPRO1(args);
662 name = Feval (Fcar (args));
663 UNGCPRO;
664
665 CHECK_STRING (name, 0);
666 temp_output_buffer_setup (XSTRING (name)->data);
667 buf = Vstandard_output;
668
669 val = Fprogn (Fcdr (args));
670
671 temp_output_buffer_show (buf);
672
673 return unbind_to (count, val);
674 }
675
676 \f
677 static void print ();
678 static void print_preprocess ();
679 static void print_preprocess_string ();
680 static void print_object ();
681
682 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
683 "Output a newline to stream PRINTCHARFUN.\n\
684 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.")
685 (printcharfun)
686 Lisp_Object printcharfun;
687 {
688 PRINTDECLARE;
689
690 if (NILP (printcharfun))
691 printcharfun = Vstandard_output;
692 PRINTPREPARE;
693 PRINTCHAR ('\n');
694 PRINTFINISH;
695 return Qt;
696 }
697
698 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
699 "Output the printed representation of OBJECT, any Lisp object.\n\
700 Quoting characters are printed when needed to make output that `read'\n\
701 can handle, whenever this is possible.\n\
702 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
703 (object, printcharfun)
704 Lisp_Object object, printcharfun;
705 {
706 PRINTDECLARE;
707
708 #ifdef MAX_PRINT_CHARS
709 max_print = 0;
710 #endif /* MAX_PRINT_CHARS */
711 if (NILP (printcharfun))
712 printcharfun = Vstandard_output;
713 PRINTPREPARE;
714 print (object, printcharfun, 1);
715 PRINTFINISH;
716 return object;
717 }
718
719 /* a buffer which is used to hold output being built by prin1-to-string */
720 Lisp_Object Vprin1_to_string_buffer;
721
722 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
723 "Return a string containing the printed representation of OBJECT,\n\
724 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\
726 second argument NOESCAPE is non-nil.")
727 (object, noescape)
728 Lisp_Object object, noescape;
729 {
730 PRINTDECLARE;
731 Lisp_Object printcharfun;
732 struct gcpro gcpro1, gcpro2;
733 Lisp_Object tem;
734
735 /* Save and restore this--we are altering a buffer
736 but we don't want to deactivate the mark just for that.
737 No need for specbind, since errors deactivate the mark. */
738 tem = Vdeactivate_mark;
739 GCPRO2 (object, tem);
740
741 printcharfun = Vprin1_to_string_buffer;
742 PRINTPREPARE;
743 print (object, printcharfun, NILP (noescape));
744 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
745 PRINTFINISH;
746 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
747 object = Fbuffer_string ();
748
749 Ferase_buffer ();
750 set_buffer_internal (old);
751
752 Vdeactivate_mark = tem;
753 UNGCPRO;
754
755 return object;
756 }
757
758 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
759 "Output the printed representation of OBJECT, any Lisp object.\n\
760 No quoting characters are used; no delimiters are printed around\n\
761 the contents of strings.\n\
762 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
763 (object, printcharfun)
764 Lisp_Object object, printcharfun;
765 {
766 PRINTDECLARE;
767
768 if (NILP (printcharfun))
769 printcharfun = Vstandard_output;
770 PRINTPREPARE;
771 print (object, printcharfun, 0);
772 PRINTFINISH;
773 return object;
774 }
775
776 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
777 "Output the printed representation of OBJECT, with newlines around it.\n\
778 Quoting characters are printed when needed to make output that `read'\n\
779 can handle, whenever this is possible.\n\
780 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
781 (object, printcharfun)
782 Lisp_Object object, printcharfun;
783 {
784 PRINTDECLARE;
785 struct gcpro gcpro1;
786
787 #ifdef MAX_PRINT_CHARS
788 print_chars = 0;
789 max_print = MAX_PRINT_CHARS;
790 #endif /* MAX_PRINT_CHARS */
791 if (NILP (printcharfun))
792 printcharfun = Vstandard_output;
793 GCPRO1 (object);
794 PRINTPREPARE;
795 PRINTCHAR ('\n');
796 print (object, printcharfun, 1);
797 PRINTCHAR ('\n');
798 PRINTFINISH;
799 #ifdef MAX_PRINT_CHARS
800 max_print = 0;
801 print_chars = 0;
802 #endif /* MAX_PRINT_CHARS */
803 UNGCPRO;
804 return object;
805 }
806
807 /* The subroutine object for external-debugging-output is kept here
808 for the convenience of the debugger. */
809 Lisp_Object Qexternal_debugging_output;
810
811 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
812 "Write CHARACTER to stderr.\n\
813 You can call print while debugging emacs, and pass it this function\n\
814 to make it write to the debugging output.\n")
815 (character)
816 Lisp_Object character;
817 {
818 CHECK_NUMBER (character, 0);
819 putc (XINT (character), stderr);
820
821 #ifdef WINDOWSNT
822 /* Send the output to a debugger (nothing happens if there isn't one). */
823 {
824 char buf[2] = {(char) XINT (character), '\0'};
825 OutputDebugString (buf);
826 }
827 #endif
828
829 return character;
830 }
831
832 /* This is the interface for debugging printing. */
833
834 void
835 debug_print (arg)
836 Lisp_Object arg;
837 {
838 Fprin1 (arg, Qexternal_debugging_output);
839 fprintf (stderr, "\r\n");
840 }
841 \f
842 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
843 1, 1, 0,
844 "Convert an error value (ERROR-SYMBOL . DATA) to an error message.")
845 (obj)
846 Lisp_Object obj;
847 {
848 struct buffer *old = current_buffer;
849 Lisp_Object value;
850 struct gcpro gcpro1;
851
852 /* If OBJ is (error STRING), just return STRING.
853 That is not only faster, it also avoids the need to allocate
854 space here when the error is due to memory full. */
855 if (CONSP (obj) && EQ (XCAR (obj), Qerror)
856 && CONSP (XCDR (obj))
857 && STRINGP (XCAR (XCDR (obj)))
858 && NILP (XCDR (XCDR (obj))))
859 return XCAR (XCDR (obj));
860
861 print_error_message (obj, Vprin1_to_string_buffer);
862
863 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
864 value = Fbuffer_string ();
865
866 GCPRO1 (value);
867 Ferase_buffer ();
868 set_buffer_internal (old);
869 UNGCPRO;
870
871 return value;
872 }
873
874 /* Print an error message for the error DATA onto Lisp output stream
875 STREAM (suitable for the print functions). */
876
877 void
878 print_error_message (data, stream)
879 Lisp_Object data, stream;
880 {
881 Lisp_Object errname, errmsg, file_error, tail;
882 struct gcpro gcpro1;
883 int i;
884
885 errname = Fcar (data);
886
887 if (EQ (errname, Qerror))
888 {
889 data = Fcdr (data);
890 if (!CONSP (data))
891 data = Qnil;
892 errmsg = Fcar (data);
893 file_error = Qnil;
894 }
895 else
896 {
897 Lisp_Object error_conditions;
898 errmsg = Fget (errname, Qerror_message);
899 error_conditions = Fget (errname, Qerror_conditions);
900 file_error = Fmemq (Qfile_error, error_conditions);
901 }
902
903 /* Print an error message including the data items. */
904
905 tail = Fcdr_safe (data);
906 GCPRO1 (tail);
907
908 /* If we know from where the error was signaled, show it in
909 *Messages*. */
910 if (!NILP (Vsignaling_function) && SYMBOLP (Vsignaling_function))
911 {
912 char *name = XSYMBOL (Vsignaling_function)->name->data;
913 message_dolog (name, strlen (name), 0, 0);
914 message_dolog (": ", 2, 0, 0);
915 Vsignaling_function = Qnil;
916 }
917
918 /* For file-error, make error message by concatenating
919 all the data items. They are all strings. */
920 if (!NILP (file_error) && CONSP (tail))
921 errmsg = XCAR (tail), tail = XCDR (tail);
922
923 if (STRINGP (errmsg))
924 Fprinc (errmsg, stream);
925 else
926 write_string_1 ("peculiar error", -1, stream);
927
928 for (i = 0; CONSP (tail); tail = XCDR (tail), i++)
929 {
930 Lisp_Object obj;
931
932 write_string_1 (i ? ", " : ": ", 2, stream);
933 obj = XCAR (tail);
934 if (!NILP (file_error) || EQ (errname, Qend_of_file))
935 Fprinc (obj, stream);
936 else
937 Fprin1 (obj, stream);
938 }
939
940 UNGCPRO;
941 }
942
943
944 \f
945 /*
946 * The buffer should be at least as large as the max string size of the
947 * largest float, printed in the biggest notation. This is undoubtedly
948 * 20d float_output_format, with the negative of the C-constant "HUGE"
949 * from <math.h>.
950 *
951 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
952 *
953 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
954 * case of -1e307 in 20d float_output_format. What is one to do (short of
955 * re-writing _doprnt to be more sane)?
956 * -wsr
957 */
958
959 void
960 float_to_string (buf, data)
961 unsigned char *buf;
962 double data;
963 {
964 unsigned char *cp;
965 int width;
966
967 /* Check for plus infinity in a way that won't lose
968 if there is no plus infinity. */
969 if (data == data / 2 && data > 1.0)
970 {
971 strcpy (buf, "1.0e+INF");
972 return;
973 }
974 /* Likewise for minus infinity. */
975 if (data == data / 2 && data < -1.0)
976 {
977 strcpy (buf, "-1.0e+INF");
978 return;
979 }
980 /* Check for NaN in a way that won't fail if there are no NaNs. */
981 if (! (data * 0.0 >= 0.0))
982 {
983 /* Prepend "-" if the NaN's sign bit is negative.
984 The sign bit of a double is the bit that is 1 in -0.0. */
985 int i;
986 union { double d; char c[sizeof (double)]; } u_data, u_minus_zero;
987 u_data.d = data;
988 u_minus_zero.d = - 0.0;
989 for (i = 0; i < sizeof (double); i++)
990 if (u_data.c[i] & u_minus_zero.c[i])
991 {
992 *buf++ = '-';
993 break;
994 }
995
996 strcpy (buf, "0.0e+NaN");
997 return;
998 }
999
1000 if (NILP (Vfloat_output_format)
1001 || !STRINGP (Vfloat_output_format))
1002 lose:
1003 {
1004 /* Generate the fewest number of digits that represent the
1005 floating point value without losing information.
1006 The following method is simple but a bit slow.
1007 For ideas about speeding things up, please see:
1008
1009 Guy L Steele Jr & Jon L White, How to print floating-point numbers
1010 accurately. SIGPLAN notices 25, 6 (June 1990), 112-126.
1011
1012 Robert G Burger & R Kent Dybvig, Printing floating point numbers
1013 quickly and accurately, SIGPLAN notices 31, 5 (May 1996), 108-116. */
1014
1015 width = fabs (data) < DBL_MIN ? 1 : DBL_DIG;
1016 do
1017 sprintf (buf, "%.*g", width, data);
1018 while (width++ < DOUBLE_DIGITS_BOUND && atof (buf) != data);
1019 }
1020 else /* oink oink */
1021 {
1022 /* Check that the spec we have is fully valid.
1023 This means not only valid for printf,
1024 but meant for floats, and reasonable. */
1025 cp = XSTRING (Vfloat_output_format)->data;
1026
1027 if (cp[0] != '%')
1028 goto lose;
1029 if (cp[1] != '.')
1030 goto lose;
1031
1032 cp += 2;
1033
1034 /* Check the width specification. */
1035 width = -1;
1036 if ('0' <= *cp && *cp <= '9')
1037 {
1038 width = 0;
1039 do
1040 width = (width * 10) + (*cp++ - '0');
1041 while (*cp >= '0' && *cp <= '9');
1042
1043 /* A precision of zero is valid only for %f. */
1044 if (width > DBL_DIG
1045 || (width == 0 && *cp != 'f'))
1046 goto lose;
1047 }
1048
1049 if (*cp != 'e' && *cp != 'f' && *cp != 'g')
1050 goto lose;
1051
1052 if (cp[1] != 0)
1053 goto lose;
1054
1055 sprintf (buf, XSTRING (Vfloat_output_format)->data, data);
1056 }
1057
1058 /* Make sure there is a decimal point with digit after, or an
1059 exponent, so that the value is readable as a float. But don't do
1060 this with "%.0f"; it's valid for that not to produce a decimal
1061 point. Note that width can be 0 only for %.0f. */
1062 if (width != 0)
1063 {
1064 for (cp = buf; *cp; cp++)
1065 if ((*cp < '0' || *cp > '9') && *cp != '-')
1066 break;
1067
1068 if (*cp == '.' && cp[1] == 0)
1069 {
1070 cp[1] = '0';
1071 cp[2] = 0;
1072 }
1073
1074 if (*cp == 0)
1075 {
1076 *cp++ = '.';
1077 *cp++ = '0';
1078 *cp++ = 0;
1079 }
1080 }
1081 }
1082
1083 \f
1084 static void
1085 print (obj, printcharfun, escapeflag)
1086 Lisp_Object obj;
1087 register Lisp_Object printcharfun;
1088 int escapeflag;
1089 {
1090 print_depth = 0;
1091
1092 /* Reset print_number_index and Vprint_number_table only when
1093 the variable Vprint_continuous_numbering is nil. Otherwise,
1094 the values of these variables will be kept between several
1095 print functions. */
1096 if (NILP (Vprint_continuous_numbering))
1097 {
1098 print_number_index = 0;
1099 Vprint_number_table = Qnil;
1100 }
1101
1102 /* Construct Vprint_number_table for print-gensym and print-circle. */
1103 if (!NILP (Vprint_gensym) || !NILP (Vprint_circle))
1104 {
1105 int i, start, index;
1106 /* Construct Vprint_number_table. */
1107 start = index = print_number_index;
1108 print_preprocess (obj);
1109 /* Remove unnecessary objects, which appear only once in OBJ;
1110 that is, whose status is Qnil. */
1111 for (i = start; i < print_number_index; i++)
1112 if (!NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1113 {
1114 PRINT_NUMBER_OBJECT (Vprint_number_table, index)
1115 = PRINT_NUMBER_OBJECT (Vprint_number_table, i);
1116 /* Reset the status field for the next print step. Now this
1117 field means whether the object has already been printed. */
1118 PRINT_NUMBER_STATUS (Vprint_number_table, index) = Qnil;
1119 index++;
1120 }
1121 print_number_index = index;
1122 }
1123
1124 print_object (obj, printcharfun, escapeflag);
1125 }
1126
1127 /* Construct Vprint_number_table according to the structure of OBJ.
1128 OBJ itself and all its elements will be added to Vprint_number_table
1129 recursively if it is a list, vector, compiled function, char-table,
1130 string (its text properties will be traced), or a symbol that has
1131 no obarray (this is for the print-gensym feature).
1132 The status fields of Vprint_number_table mean whether each object appears
1133 more than once in OBJ: Qnil at the first time, and Qt after that . */
1134 static void
1135 print_preprocess (obj)
1136 Lisp_Object obj;
1137 {
1138 int i, size;
1139
1140 loop:
1141 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
1142 || COMPILEDP (obj) || CHAR_TABLE_P (obj)
1143 || (! NILP (Vprint_gensym)
1144 && SYMBOLP (obj) && NILP (XSYMBOL (obj)->obarray)))
1145 {
1146 /* In case print-circle is nil and print-gensym is t,
1147 add OBJ to Vprint_number_table only when OBJ is a symbol. */
1148 if (! NILP (Vprint_circle) || SYMBOLP (obj))
1149 {
1150 for (i = 0; i < print_number_index; i++)
1151 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i), obj))
1152 {
1153 /* OBJ appears more than once. Let's remember that. */
1154 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1155 return;
1156 }
1157
1158 /* OBJ is not yet recorded. Let's add to the table. */
1159 if (print_number_index == 0)
1160 {
1161 /* Initialize the table. */
1162 Vprint_number_table = Fmake_vector (make_number (40), Qnil);
1163 }
1164 else if (XVECTOR (Vprint_number_table)->size == print_number_index * 2)
1165 {
1166 /* Reallocate the table. */
1167 int i = print_number_index * 4;
1168 Lisp_Object old_table = Vprint_number_table;
1169 Vprint_number_table = Fmake_vector (make_number (i), Qnil);
1170 for (i = 0; i < print_number_index; i++)
1171 {
1172 PRINT_NUMBER_OBJECT (Vprint_number_table, i)
1173 = PRINT_NUMBER_OBJECT (old_table, i);
1174 PRINT_NUMBER_STATUS (Vprint_number_table, i)
1175 = PRINT_NUMBER_STATUS (old_table, i);
1176 }
1177 }
1178 PRINT_NUMBER_OBJECT (Vprint_number_table, print_number_index) = obj;
1179 /* If Vprint_continuous_numbering is non-nil and OBJ is a gensym,
1180 always print the gensym with a number. This is a special for
1181 the lisp function byte-compile-output-docform. */
1182 if (! NILP (Vprint_continuous_numbering) && SYMBOLP (obj)
1183 && NILP (XSYMBOL (obj)->obarray))
1184 PRINT_NUMBER_STATUS (Vprint_number_table, print_number_index) = Qt;
1185 print_number_index++;
1186 }
1187
1188 switch (XGCTYPE (obj))
1189 {
1190 case Lisp_String:
1191 /* A string may have text properties, which can be circular. */
1192 traverse_intervals (XSTRING (obj)->intervals, 0, 0,
1193 print_preprocess_string, Qnil);
1194 break;
1195
1196 case Lisp_Cons:
1197 print_preprocess (XCAR (obj));
1198 obj = XCDR (obj);
1199 goto loop;
1200
1201 case Lisp_Vectorlike:
1202 size = XVECTOR (obj)->size & PSEUDOVECTOR_SIZE_MASK;
1203 for (i = 0; i < size; i++)
1204 print_preprocess (XVECTOR (obj)->contents[i]);
1205 break;
1206
1207 default:
1208 break;
1209 }
1210 }
1211 }
1212
1213 static void
1214 print_preprocess_string (interval, arg)
1215 INTERVAL interval;
1216 Lisp_Object arg;
1217 {
1218 print_preprocess (interval->plist);
1219 }
1220
1221 static void
1222 print_object (obj, printcharfun, escapeflag)
1223 Lisp_Object obj;
1224 register Lisp_Object printcharfun;
1225 int escapeflag;
1226 {
1227 char buf[30];
1228
1229 QUIT;
1230
1231 /* Detect circularities and truncate them. */
1232 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
1233 || COMPILEDP (obj) || CHAR_TABLE_P (obj)
1234 || (! NILP (Vprint_gensym)
1235 && SYMBOLP (obj) && NILP (XSYMBOL (obj)->obarray)))
1236 {
1237 if (NILP (Vprint_circle) && NILP (Vprint_gensym))
1238 {
1239 /* Simple but incomplete way. */
1240 int i;
1241 for (i = 0; i < print_depth; i++)
1242 if (EQ (obj, being_printed[i]))
1243 {
1244 sprintf (buf, "#%d", i);
1245 strout (buf, -1, -1, printcharfun, 0);
1246 return;
1247 }
1248 being_printed[print_depth] = obj;
1249 }
1250 else
1251 {
1252 /* With the print-circle feature. */
1253 int i;
1254 for (i = 0; i < print_number_index; i++)
1255 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i), obj))
1256 {
1257 if (NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1258 {
1259 /* Add a prefix #n= if OBJ has not yet been printed;
1260 that is, its status field is nil. */
1261 sprintf (buf, "#%d=", i + 1);
1262 strout (buf, -1, -1, printcharfun, 0);
1263 /* OBJ is going to be printed. Set the status to t. */
1264 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1265 break;
1266 }
1267 else
1268 {
1269 /* Just print #n# if OBJ has already been printed. */
1270 sprintf (buf, "#%d#", i + 1);
1271 strout (buf, -1, -1, printcharfun, 0);
1272 return;
1273 }
1274 }
1275 }
1276 }
1277
1278 print_depth++;
1279
1280 if (print_depth > PRINT_CIRCLE)
1281 error ("Apparently circular structure being printed");
1282 #ifdef MAX_PRINT_CHARS
1283 if (max_print && print_chars > max_print)
1284 {
1285 PRINTCHAR ('\n');
1286 print_chars = 0;
1287 }
1288 #endif /* MAX_PRINT_CHARS */
1289
1290 switch (XGCTYPE (obj))
1291 {
1292 case Lisp_Int:
1293 if (sizeof (int) == sizeof (EMACS_INT))
1294 sprintf (buf, "%d", XINT (obj));
1295 else if (sizeof (long) == sizeof (EMACS_INT))
1296 sprintf (buf, "%ld", (long) XINT (obj));
1297 else
1298 abort ();
1299 strout (buf, -1, -1, printcharfun, 0);
1300 break;
1301
1302 case Lisp_Float:
1303 {
1304 char pigbuf[350]; /* see comments in float_to_string */
1305
1306 float_to_string (pigbuf, XFLOAT_DATA (obj));
1307 strout (pigbuf, -1, -1, printcharfun, 0);
1308 }
1309 break;
1310
1311 case Lisp_String:
1312 if (!escapeflag)
1313 print_string (obj, printcharfun);
1314 else
1315 {
1316 register int i, i_byte;
1317 struct gcpro gcpro1;
1318 unsigned char *str;
1319 int size_byte;
1320 /* 1 means we must ensure that the next character we output
1321 cannot be taken as part of a hex character escape. */
1322 int need_nonhex = 0;
1323
1324 GCPRO1 (obj);
1325
1326 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1327 {
1328 PRINTCHAR ('#');
1329 PRINTCHAR ('(');
1330 }
1331
1332 PRINTCHAR ('\"');
1333 str = XSTRING (obj)->data;
1334 size_byte = STRING_BYTES (XSTRING (obj));
1335
1336 for (i = 0, i_byte = 0; i_byte < size_byte;)
1337 {
1338 /* Here, we must convert each multi-byte form to the
1339 corresponding character code before handing it to PRINTCHAR. */
1340 int len;
1341 int c;
1342
1343 if (STRING_MULTIBYTE (obj))
1344 {
1345 c = STRING_CHAR_AND_LENGTH (str + i_byte,
1346 size_byte - i_byte, len);
1347 if (CHAR_VALID_P (c, 0))
1348 i_byte += len;
1349 else
1350 c = str[i_byte++];
1351 }
1352 else
1353 c = str[i_byte++];
1354
1355 QUIT;
1356
1357 if (c == '\n' && print_escape_newlines)
1358 {
1359 PRINTCHAR ('\\');
1360 PRINTCHAR ('n');
1361 }
1362 else if (c == '\f' && print_escape_newlines)
1363 {
1364 PRINTCHAR ('\\');
1365 PRINTCHAR ('f');
1366 }
1367 else if (! SINGLE_BYTE_CHAR_P (c) && print_escape_multibyte)
1368 {
1369 /* When multibyte is disabled,
1370 print multibyte string chars using hex escapes. */
1371 unsigned char outbuf[50];
1372 sprintf (outbuf, "\\x%x", c);
1373 strout (outbuf, -1, -1, printcharfun, 0);
1374 need_nonhex = 1;
1375 }
1376 else if (SINGLE_BYTE_CHAR_P (c) && ! ASCII_BYTE_P (c)
1377 && print_escape_nonascii)
1378 {
1379 /* When printing in a multibyte buffer
1380 or when explicitly requested,
1381 print single-byte non-ASCII string chars
1382 using octal escapes. */
1383 unsigned char outbuf[5];
1384 sprintf (outbuf, "\\%03o", c);
1385 strout (outbuf, -1, -1, printcharfun, 0);
1386 }
1387 else
1388 {
1389 /* If we just had a hex escape, and this character
1390 could be taken as part of it,
1391 output `\ ' to prevent that. */
1392 if (need_nonhex)
1393 {
1394 need_nonhex = 0;
1395 if ((c >= 'a' && c <= 'f')
1396 || (c >= 'A' && c <= 'F')
1397 || (c >= '0' && c <= '9'))
1398 strout ("\\ ", -1, -1, printcharfun, 0);
1399 }
1400
1401 if (c == '\"' || c == '\\')
1402 PRINTCHAR ('\\');
1403 PRINTCHAR (c);
1404 }
1405 }
1406 PRINTCHAR ('\"');
1407
1408 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1409 {
1410 traverse_intervals (XSTRING (obj)->intervals,
1411 0, 0, print_interval, printcharfun);
1412 PRINTCHAR (')');
1413 }
1414
1415 UNGCPRO;
1416 }
1417 break;
1418
1419 case Lisp_Symbol:
1420 {
1421 register int confusing;
1422 register unsigned char *p = XSYMBOL (obj)->name->data;
1423 register unsigned char *end = p + STRING_BYTES (XSYMBOL (obj)->name);
1424 register int c;
1425 int i, i_byte, size_byte;
1426 Lisp_Object name;
1427
1428 XSETSTRING (name, XSYMBOL (obj)->name);
1429
1430 if (p != end && (*p == '-' || *p == '+')) p++;
1431 if (p == end)
1432 confusing = 0;
1433 /* If symbol name begins with a digit, and ends with a digit,
1434 and contains nothing but digits and `e', it could be treated
1435 as a number. So set CONFUSING.
1436
1437 Symbols that contain periods could also be taken as numbers,
1438 but periods are always escaped, so we don't have to worry
1439 about them here. */
1440 else if (*p >= '0' && *p <= '9'
1441 && end[-1] >= '0' && end[-1] <= '9')
1442 {
1443 while (p != end && ((*p >= '0' && *p <= '9')
1444 /* Needed for \2e10. */
1445 || *p == 'e'))
1446 p++;
1447 confusing = (end == p);
1448 }
1449 else
1450 confusing = 0;
1451
1452 if (! NILP (Vprint_gensym) && NILP (XSYMBOL (obj)->obarray))
1453 {
1454 PRINTCHAR ('#');
1455 PRINTCHAR (':');
1456 }
1457
1458 size_byte = STRING_BYTES (XSTRING (name));
1459
1460 for (i = 0, i_byte = 0; i_byte < size_byte;)
1461 {
1462 /* Here, we must convert each multi-byte form to the
1463 corresponding character code before handing it to PRINTCHAR. */
1464 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1465 QUIT;
1466
1467 if (escapeflag)
1468 {
1469 if (c == '\"' || c == '\\' || c == '\''
1470 || c == ';' || c == '#' || c == '(' || c == ')'
1471 || c == ',' || c =='.' || c == '`'
1472 || c == '[' || c == ']' || c == '?' || c <= 040
1473 || confusing)
1474 PRINTCHAR ('\\'), confusing = 0;
1475 }
1476 PRINTCHAR (c);
1477 }
1478 }
1479 break;
1480
1481 case Lisp_Cons:
1482 /* If deeper than spec'd depth, print placeholder. */
1483 if (INTEGERP (Vprint_level)
1484 && print_depth > XINT (Vprint_level))
1485 strout ("...", -1, -1, printcharfun, 0);
1486 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1487 && (EQ (XCAR (obj), Qquote)))
1488 {
1489 PRINTCHAR ('\'');
1490 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1491 }
1492 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1493 && (EQ (XCAR (obj), Qfunction)))
1494 {
1495 PRINTCHAR ('#');
1496 PRINTCHAR ('\'');
1497 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1498 }
1499 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1500 && ((EQ (XCAR (obj), Qbackquote)
1501 || EQ (XCAR (obj), Qcomma)
1502 || EQ (XCAR (obj), Qcomma_at)
1503 || EQ (XCAR (obj), Qcomma_dot))))
1504 {
1505 print_object (XCAR (obj), printcharfun, 0);
1506 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1507 }
1508 else
1509 {
1510 PRINTCHAR ('(');
1511 {
1512 int print_length, i;
1513 Lisp_Object halftail = obj;
1514
1515 /* Negative values of print-length are invalid in CL.
1516 Treat them like nil, as CMUCL does. */
1517 if (NATNUMP (Vprint_length))
1518 print_length = XFASTINT (Vprint_length);
1519 else
1520 print_length = 0;
1521
1522 i = 0;
1523 while (CONSP (obj))
1524 {
1525 /* Detect circular list. */
1526 if (NILP (Vprint_circle))
1527 {
1528 /* Simple but imcomplete way. */
1529 if (i != 0 && EQ (obj, halftail))
1530 {
1531 sprintf (buf, " . #%d", i / 2);
1532 strout (buf, -1, -1, printcharfun, 0);
1533 goto end_of_list;
1534 }
1535 }
1536 else
1537 {
1538 /* With the print-circle feature. */
1539 if (i != 0)
1540 {
1541 int i;
1542 for (i = 0; i < print_number_index; i++)
1543 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i),
1544 obj))
1545 {
1546 if (NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1547 {
1548 strout (" . ", 3, 3, printcharfun, 0);
1549 print_object (obj, printcharfun, escapeflag);
1550 }
1551 else
1552 {
1553 sprintf (buf, " . #%d#", i + 1);
1554 strout (buf, -1, -1, printcharfun, 0);
1555 }
1556 goto end_of_list;
1557 }
1558 }
1559 }
1560
1561 if (i++)
1562 PRINTCHAR (' ');
1563
1564 if (print_length && i > print_length)
1565 {
1566 strout ("...", 3, 3, printcharfun, 0);
1567 goto end_of_list;
1568 }
1569
1570 print_object (XCAR (obj), printcharfun, escapeflag);
1571
1572 obj = XCDR (obj);
1573 if (!(i & 1))
1574 halftail = XCDR (halftail);
1575 }
1576 }
1577
1578 /* OBJ non-nil here means it's the end of a dotted list. */
1579 if (!NILP (obj))
1580 {
1581 strout (" . ", 3, 3, printcharfun, 0);
1582 print_object (obj, printcharfun, escapeflag);
1583 }
1584
1585 end_of_list:
1586 PRINTCHAR (')');
1587 }
1588 break;
1589
1590 case Lisp_Vectorlike:
1591 if (PROCESSP (obj))
1592 {
1593 if (escapeflag)
1594 {
1595 strout ("#<process ", -1, -1, printcharfun, 0);
1596 print_string (XPROCESS (obj)->name, printcharfun);
1597 PRINTCHAR ('>');
1598 }
1599 else
1600 print_string (XPROCESS (obj)->name, printcharfun);
1601 }
1602 else if (BOOL_VECTOR_P (obj))
1603 {
1604 register int i;
1605 register unsigned char c;
1606 struct gcpro gcpro1;
1607 int size_in_chars
1608 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
1609
1610 GCPRO1 (obj);
1611
1612 PRINTCHAR ('#');
1613 PRINTCHAR ('&');
1614 sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
1615 strout (buf, -1, -1, printcharfun, 0);
1616 PRINTCHAR ('\"');
1617
1618 /* Don't print more characters than the specified maximum.
1619 Negative values of print-length are invalid. Treat them
1620 like a print-length of nil. */
1621 if (NATNUMP (Vprint_length)
1622 && XFASTINT (Vprint_length) < size_in_chars)
1623 size_in_chars = XFASTINT (Vprint_length);
1624
1625 for (i = 0; i < size_in_chars; i++)
1626 {
1627 QUIT;
1628 c = XBOOL_VECTOR (obj)->data[i];
1629 if (c == '\n' && print_escape_newlines)
1630 {
1631 PRINTCHAR ('\\');
1632 PRINTCHAR ('n');
1633 }
1634 else if (c == '\f' && print_escape_newlines)
1635 {
1636 PRINTCHAR ('\\');
1637 PRINTCHAR ('f');
1638 }
1639 else
1640 {
1641 if (c == '\"' || c == '\\')
1642 PRINTCHAR ('\\');
1643 PRINTCHAR (c);
1644 }
1645 }
1646 PRINTCHAR ('\"');
1647
1648 UNGCPRO;
1649 }
1650 else if (SUBRP (obj))
1651 {
1652 strout ("#<subr ", -1, -1, printcharfun, 0);
1653 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun, 0);
1654 PRINTCHAR ('>');
1655 }
1656 else if (WINDOWP (obj))
1657 {
1658 strout ("#<window ", -1, -1, printcharfun, 0);
1659 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number));
1660 strout (buf, -1, -1, printcharfun, 0);
1661 if (!NILP (XWINDOW (obj)->buffer))
1662 {
1663 strout (" on ", -1, -1, printcharfun, 0);
1664 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
1665 }
1666 PRINTCHAR ('>');
1667 }
1668 else if (HASH_TABLE_P (obj))
1669 {
1670 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
1671 strout ("#<hash-table", -1, -1, printcharfun, 0);
1672 if (SYMBOLP (h->test))
1673 {
1674 PRINTCHAR (' ');
1675 PRINTCHAR ('\'');
1676 strout (XSYMBOL (h->test)->name->data, -1, -1, printcharfun, 0);
1677 PRINTCHAR (' ');
1678 strout (XSYMBOL (h->weak)->name->data, -1, -1, printcharfun, 0);
1679 PRINTCHAR (' ');
1680 sprintf (buf, "%d/%d", XFASTINT (h->count),
1681 XVECTOR (h->next)->size);
1682 strout (buf, -1, -1, printcharfun, 0);
1683 }
1684 sprintf (buf, " 0x%lx", (unsigned long) h);
1685 strout (buf, -1, -1, printcharfun, 0);
1686 PRINTCHAR ('>');
1687 }
1688 else if (BUFFERP (obj))
1689 {
1690 if (NILP (XBUFFER (obj)->name))
1691 strout ("#<killed buffer>", -1, -1, printcharfun, 0);
1692 else if (escapeflag)
1693 {
1694 strout ("#<buffer ", -1, -1, printcharfun, 0);
1695 print_string (XBUFFER (obj)->name, printcharfun);
1696 PRINTCHAR ('>');
1697 }
1698 else
1699 print_string (XBUFFER (obj)->name, printcharfun);
1700 }
1701 else if (WINDOW_CONFIGURATIONP (obj))
1702 {
1703 strout ("#<window-configuration>", -1, -1, printcharfun, 0);
1704 }
1705 else if (FRAMEP (obj))
1706 {
1707 strout ((FRAME_LIVE_P (XFRAME (obj))
1708 ? "#<frame " : "#<dead frame "),
1709 -1, -1, printcharfun, 0);
1710 print_string (XFRAME (obj)->name, printcharfun);
1711 sprintf (buf, " 0x%lx\\ ", (unsigned long) (XFRAME (obj)));
1712 strout (buf, -1, -1, printcharfun, 0);
1713 PRINTCHAR ('>');
1714 }
1715 else
1716 {
1717 int size = XVECTOR (obj)->size;
1718 if (COMPILEDP (obj))
1719 {
1720 PRINTCHAR ('#');
1721 size &= PSEUDOVECTOR_SIZE_MASK;
1722 }
1723 if (CHAR_TABLE_P (obj))
1724 {
1725 /* We print a char-table as if it were a vector,
1726 lumping the parent and default slots in with the
1727 character slots. But we add #^ as a prefix. */
1728 PRINTCHAR ('#');
1729 PRINTCHAR ('^');
1730 if (SUB_CHAR_TABLE_P (obj))
1731 PRINTCHAR ('^');
1732 size &= PSEUDOVECTOR_SIZE_MASK;
1733 }
1734 if (size & PSEUDOVECTOR_FLAG)
1735 goto badtype;
1736
1737 PRINTCHAR ('[');
1738 {
1739 register int i;
1740 register Lisp_Object tem;
1741 int real_size = size;
1742
1743 /* Don't print more elements than the specified maximum. */
1744 if (NATNUMP (Vprint_length)
1745 && XFASTINT (Vprint_length) < size)
1746 size = XFASTINT (Vprint_length);
1747
1748 for (i = 0; i < size; i++)
1749 {
1750 if (i) PRINTCHAR (' ');
1751 tem = XVECTOR (obj)->contents[i];
1752 print_object (tem, printcharfun, escapeflag);
1753 }
1754 if (size < real_size)
1755 strout (" ...", 4, 4, printcharfun, 0);
1756 }
1757 PRINTCHAR (']');
1758 }
1759 break;
1760
1761 case Lisp_Misc:
1762 switch (XMISCTYPE (obj))
1763 {
1764 case Lisp_Misc_Marker:
1765 strout ("#<marker ", -1, -1, printcharfun, 0);
1766 /* Do you think this is necessary? */
1767 if (XMARKER (obj)->insertion_type != 0)
1768 strout ("(before-insertion) ", -1, -1, printcharfun, 0);
1769 if (!(XMARKER (obj)->buffer))
1770 strout ("in no buffer", -1, -1, printcharfun, 0);
1771 else
1772 {
1773 sprintf (buf, "at %d", marker_position (obj));
1774 strout (buf, -1, -1, printcharfun, 0);
1775 strout (" in ", -1, -1, printcharfun, 0);
1776 print_string (XMARKER (obj)->buffer->name, printcharfun);
1777 }
1778 PRINTCHAR ('>');
1779 break;
1780
1781 case Lisp_Misc_Overlay:
1782 strout ("#<overlay ", -1, -1, printcharfun, 0);
1783 if (!(XMARKER (OVERLAY_START (obj))->buffer))
1784 strout ("in no buffer", -1, -1, printcharfun, 0);
1785 else
1786 {
1787 sprintf (buf, "from %d to %d in ",
1788 marker_position (OVERLAY_START (obj)),
1789 marker_position (OVERLAY_END (obj)));
1790 strout (buf, -1, -1, printcharfun, 0);
1791 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
1792 printcharfun);
1793 }
1794 PRINTCHAR ('>');
1795 break;
1796
1797 /* Remaining cases shouldn't happen in normal usage, but let's print
1798 them anyway for the benefit of the debugger. */
1799 case Lisp_Misc_Free:
1800 strout ("#<misc free cell>", -1, -1, printcharfun, 0);
1801 break;
1802
1803 case Lisp_Misc_Intfwd:
1804 sprintf (buf, "#<intfwd to %d>", *XINTFWD (obj)->intvar);
1805 strout (buf, -1, -1, printcharfun, 0);
1806 break;
1807
1808 case Lisp_Misc_Boolfwd:
1809 sprintf (buf, "#<boolfwd to %s>",
1810 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
1811 strout (buf, -1, -1, printcharfun, 0);
1812 break;
1813
1814 case Lisp_Misc_Objfwd:
1815 strout ("#<objfwd to ", -1, -1, printcharfun, 0);
1816 print_object (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
1817 PRINTCHAR ('>');
1818 break;
1819
1820 case Lisp_Misc_Buffer_Objfwd:
1821 strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
1822 print_object (PER_BUFFER_VALUE (current_buffer,
1823 XBUFFER_OBJFWD (obj)->offset),
1824 printcharfun, escapeflag);
1825 PRINTCHAR ('>');
1826 break;
1827
1828 case Lisp_Misc_Kboard_Objfwd:
1829 strout ("#<kboard_objfwd to ", -1, -1, printcharfun, 0);
1830 print_object (*(Lisp_Object *)((char *) current_kboard
1831 + XKBOARD_OBJFWD (obj)->offset),
1832 printcharfun, escapeflag);
1833 PRINTCHAR ('>');
1834 break;
1835
1836 case Lisp_Misc_Buffer_Local_Value:
1837 strout ("#<buffer_local_value ", -1, -1, printcharfun, 0);
1838 goto do_buffer_local;
1839 case Lisp_Misc_Some_Buffer_Local_Value:
1840 strout ("#<some_buffer_local_value ", -1, -1, printcharfun, 0);
1841 do_buffer_local:
1842 strout ("[realvalue] ", -1, -1, printcharfun, 0);
1843 print_object (XBUFFER_LOCAL_VALUE (obj)->realvalue,
1844 printcharfun, escapeflag);
1845 if (XBUFFER_LOCAL_VALUE (obj)->found_for_buffer)
1846 strout ("[local in buffer] ", -1, -1, printcharfun, 0);
1847 else
1848 strout ("[buffer] ", -1, -1, printcharfun, 0);
1849 print_object (XBUFFER_LOCAL_VALUE (obj)->buffer,
1850 printcharfun, escapeflag);
1851 if (XBUFFER_LOCAL_VALUE (obj)->check_frame)
1852 {
1853 if (XBUFFER_LOCAL_VALUE (obj)->found_for_frame)
1854 strout ("[local in frame] ", -1, -1, printcharfun, 0);
1855 else
1856 strout ("[frame] ", -1, -1, printcharfun, 0);
1857 print_object (XBUFFER_LOCAL_VALUE (obj)->frame,
1858 printcharfun, escapeflag);
1859 }
1860 strout ("[alist-elt] ", -1, -1, printcharfun, 0);
1861 print_object (XCAR (XBUFFER_LOCAL_VALUE (obj)->cdr),
1862 printcharfun, escapeflag);
1863 strout ("[default-value] ", -1, -1, printcharfun, 0);
1864 print_object (XCDR (XBUFFER_LOCAL_VALUE (obj)->cdr),
1865 printcharfun, escapeflag);
1866 PRINTCHAR ('>');
1867 break;
1868
1869 default:
1870 goto badtype;
1871 }
1872 break;
1873
1874 default:
1875 badtype:
1876 {
1877 /* We're in trouble if this happens!
1878 Probably should just abort () */
1879 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun, 0);
1880 if (MISCP (obj))
1881 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
1882 else if (VECTORLIKEP (obj))
1883 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
1884 else
1885 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
1886 strout (buf, -1, -1, printcharfun, 0);
1887 strout (" Save your buffers immediately and please report this bug>",
1888 -1, -1, printcharfun, 0);
1889 }
1890 }
1891
1892 print_depth--;
1893 }
1894 \f
1895
1896 /* Print a description of INTERVAL using PRINTCHARFUN.
1897 This is part of printing a string that has text properties. */
1898
1899 void
1900 print_interval (interval, printcharfun)
1901 INTERVAL interval;
1902 Lisp_Object printcharfun;
1903 {
1904 PRINTCHAR (' ');
1905 print_object (make_number (interval->position), printcharfun, 1);
1906 PRINTCHAR (' ');
1907 print_object (make_number (interval->position + LENGTH (interval)),
1908 printcharfun, 1);
1909 PRINTCHAR (' ');
1910 print_object (interval->plist, printcharfun, 1);
1911 }
1912
1913 \f
1914 void
1915 syms_of_print ()
1916 {
1917 Qtemp_buffer_setup_hook = intern ("temp-buffer-setup-hook");
1918 staticpro (&Qtemp_buffer_setup_hook);
1919
1920 DEFVAR_LISP ("standard-output", &Vstandard_output,
1921 "Output stream `print' uses by default for outputting a character.\n\
1922 This may be any function of one argument.\n\
1923 It may also be a buffer (output is inserted before point)\n\
1924 or a marker (output is inserted and the marker is advanced)\n\
1925 or the symbol t (output appears in the echo area).");
1926 Vstandard_output = Qt;
1927 Qstandard_output = intern ("standard-output");
1928 staticpro (&Qstandard_output);
1929
1930 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
1931 "The format descriptor string used to print floats.\n\
1932 This is a %-spec like those accepted by `printf' in C,\n\
1933 but with some restrictions. It must start with the two characters `%.'.\n\
1934 After that comes an integer precision specification,\n\
1935 and then a letter which controls the format.\n\
1936 The letters allowed are `e', `f' and `g'.\n\
1937 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\
1938 Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\
1939 Use `g' to choose the shorter of those two formats for the number at hand.\n\
1940 The precision in any of these cases is the number of digits following\n\
1941 the decimal point. With `f', a precision of 0 means to omit the\n\
1942 decimal point. 0 is not allowed with `e' or `g'.\n\n\
1943 A value of nil means to use the shortest notation\n\
1944 that represents the number without losing information.");
1945 Vfloat_output_format = Qnil;
1946 Qfloat_output_format = intern ("float-output-format");
1947 staticpro (&Qfloat_output_format);
1948
1949 DEFVAR_LISP ("print-length", &Vprint_length,
1950 "Maximum length of list to print before abbreviating.\n\
1951 A value of nil means no limit.");
1952 Vprint_length = Qnil;
1953
1954 DEFVAR_LISP ("print-level", &Vprint_level,
1955 "Maximum depth of list nesting to print before abbreviating.\n\
1956 A value of nil means no limit.");
1957 Vprint_level = Qnil;
1958
1959 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
1960 "Non-nil means print newlines in strings as backslash-n.\n\
1961 Also print formfeeds as backslash-f.");
1962 print_escape_newlines = 0;
1963
1964 DEFVAR_BOOL ("print-escape-nonascii", &print_escape_nonascii,
1965 "Non-nil means print unibyte non-ASCII chars in strings as \\OOO.\n\
1966 \(OOO is the octal representation of the character code.)\n\
1967 Only single-byte characters are affected, and only in `prin1'.");
1968 print_escape_nonascii = 0;
1969
1970 DEFVAR_BOOL ("print-escape-multibyte", &print_escape_multibyte,
1971 "Non-nil means print multibyte characters in strings as \\xXXXX.\n\
1972 \(XXX is the hex representation of the character code.)\n\
1973 This affects only `prin1'.");
1974 print_escape_multibyte = 0;
1975
1976 DEFVAR_BOOL ("print-quoted", &print_quoted,
1977 "Non-nil means print quoted forms with reader syntax.\n\
1978 I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and, backquoted\n\
1979 forms print in the new syntax.");
1980 print_quoted = 0;
1981
1982 DEFVAR_LISP ("print-gensym", &Vprint_gensym,
1983 "Non-nil means print uninterned symbols so they will read as uninterned.\n\
1984 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.\n\
1985 When the uninterned symbol appears within a recursive data structure\n\
1986 and the symbol appears more than once, in addition use the #N# and #N=\n\
1987 constructs as needed, so that multiple references to the same symbol are\n\
1988 shared once again when the text is read back.");
1989 Vprint_gensym = Qnil;
1990
1991 DEFVAR_LISP ("print-circle", &Vprint_circle,
1992 "*Non-nil means print recursive structures using #N= and #N# syntax.\n\
1993 If nil, printing proceeds recursively and may lead to\n\
1994 `max-lisp-eval-depth' being exceeded or an error may occur:\n\
1995 \"Apparently circular structure being printed.\" Also see\n\
1996 `print-length' and `print-level'.\n\
1997 If non-nil, shared substructures anywhere in the structure are printed\n\
1998 with `#N=' before the first occurrence (in the order of the print\n\
1999 representation) and `#N#' in place of each subsequent occurrence,\n\
2000 where N is a positive decimal integer.");
2001 Vprint_circle = Qnil;
2002
2003 DEFVAR_LISP ("print-continuous-numbering", &Vprint_continuous_numbering,
2004 "*Non-nil means keep numbering between several print functions.\n\
2005 See `print-gensym' nad `print-circle'. See also `print-number-table'.");
2006 Vprint_continuous_numbering = Qnil;
2007
2008 DEFVAR_LISP ("print-number-table", &Vprint_number_table,
2009 "A vector keeping the information of the current printed object.\n\
2010 This variable shouldn't be modified in Lisp level, but should be binded\n\
2011 with nil using let at the same position with `print-continuous-numbering',\n\
2012 so that the value of this variable can be freed after printing.");
2013 Vprint_number_table = Qnil;
2014
2015 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
2016 staticpro (&Vprin1_to_string_buffer);
2017
2018 defsubr (&Sprin1);
2019 defsubr (&Sprin1_to_string);
2020 defsubr (&Serror_message_string);
2021 defsubr (&Sprinc);
2022 defsubr (&Sprint);
2023 defsubr (&Sterpri);
2024 defsubr (&Swrite_char);
2025 defsubr (&Sexternal_debugging_output);
2026
2027 Qexternal_debugging_output = intern ("external-debugging-output");
2028 staticpro (&Qexternal_debugging_output);
2029
2030 Qprint_escape_newlines = intern ("print-escape-newlines");
2031 staticpro (&Qprint_escape_newlines);
2032
2033 Qprint_escape_multibyte = intern ("print-escape-multibyte");
2034 staticpro (&Qprint_escape_multibyte);
2035
2036 Qprint_escape_nonascii = intern ("print-escape-nonascii");
2037 staticpro (&Qprint_escape_nonascii);
2038
2039 defsubr (&Swith_output_to_temp_buffer);
2040 }