1 /* Lisp object printing and output streams.
3 Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2016 Free Software
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or (at
11 your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26 #include "character.h"
33 #include "intervals.h"
34 #include "blockinput.h"
42 # include <sys/socket.h> /* for F_DUPFD_CLOEXEC */
47 /* Avoid actual stack overflow in print. */
48 static ptrdiff_t print_depth
;
50 /* Level of nesting inside outputting backquote in new style. */
51 static ptrdiff_t new_backquote_output
;
53 /* Detect most circularities to print finite output. */
54 #define PRINT_CIRCLE 200
55 static Lisp_Object being_printed
[PRINT_CIRCLE
];
57 /* Last char printed to stdout by printchar. */
58 static unsigned int printchar_stdout_last
;
60 /* When printing into a buffer, first we put the text in this
61 block, then insert it all at once. */
62 static char *print_buffer
;
64 /* Size allocated in print_buffer. */
65 static ptrdiff_t print_buffer_size
;
66 /* Chars stored in print_buffer. */
67 static ptrdiff_t print_buffer_pos
;
68 /* Bytes stored in print_buffer. */
69 static ptrdiff_t print_buffer_pos_byte
;
71 /* Vprint_number_table is a table, that keeps objects that are going to
72 be printed, to allow use of #n= and #n# to express sharing.
73 For any given object, the table can give the following values:
74 t the object will be printed only once.
75 -N the object will be printed several times and will take number N.
76 N the object has been printed so we can refer to it as #N#.
77 print_number_index holds the largest N already used.
78 N has to be striclty larger than 0 since we need to distinguish -N. */
79 static ptrdiff_t print_number_index
;
80 static void print_interval (INTERVAL interval
, Lisp_Object printcharfun
);
82 /* GDB resets this to zero on W32 to disable OutputDebugString calls. */
83 bool print_output_debug_flag EXTERNALLY_VISIBLE
= 1;
86 /* Low level output routines for characters and strings. */
88 /* Lisp functions to do output using a stream
89 must have the stream in a variable called printcharfun
90 and must start with PRINTPREPARE, end with PRINTFINISH.
91 Use printchar to output one character,
92 or call strout to output a block of characters. */
94 #define PRINTPREPARE \
95 struct buffer *old = current_buffer; \
96 ptrdiff_t old_point = -1, start_point = -1; \
97 ptrdiff_t old_point_byte = -1, start_point_byte = -1; \
98 ptrdiff_t specpdl_count = SPECPDL_INDEX (); \
99 bool free_print_buffer = 0; \
101 = !NILP (BVAR (current_buffer, enable_multibyte_characters)); \
102 Lisp_Object original = printcharfun; \
103 if (NILP (printcharfun)) printcharfun = Qt; \
104 if (BUFFERP (printcharfun)) \
106 if (XBUFFER (printcharfun) != current_buffer) \
107 Fset_buffer (printcharfun); \
108 printcharfun = Qnil; \
110 if (MARKERP (printcharfun)) \
112 ptrdiff_t marker_pos; \
113 if (! XMARKER (printcharfun)->buffer) \
114 error ("Marker does not point anywhere"); \
115 if (XMARKER (printcharfun)->buffer != current_buffer) \
116 set_buffer_internal (XMARKER (printcharfun)->buffer); \
117 marker_pos = marker_position (printcharfun); \
118 if (marker_pos < BEGV || marker_pos > ZV) \
119 signal_error ("Marker is outside the accessible " \
120 "part of the buffer", printcharfun); \
122 old_point_byte = PT_BYTE; \
123 SET_PT_BOTH (marker_pos, \
124 marker_byte_position (printcharfun)); \
126 start_point_byte = PT_BYTE; \
127 printcharfun = Qnil; \
129 if (NILP (printcharfun)) \
131 Lisp_Object string; \
132 if (NILP (BVAR (current_buffer, enable_multibyte_characters)) \
133 && ! print_escape_multibyte) \
134 specbind (Qprint_escape_multibyte, Qt); \
135 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)) \
136 && ! print_escape_nonascii) \
137 specbind (Qprint_escape_nonascii, Qt); \
138 if (print_buffer != 0) \
140 string = make_string_from_bytes (print_buffer, \
142 print_buffer_pos_byte); \
143 record_unwind_protect (print_unwind, string); \
147 int new_size = 1000; \
148 print_buffer = xmalloc (new_size); \
149 print_buffer_size = new_size; \
150 free_print_buffer = 1; \
152 print_buffer_pos = 0; \
153 print_buffer_pos_byte = 0; \
155 if (EQ (printcharfun, Qt) && ! noninteractive) \
156 setup_echo_area_for_printing (multibyte);
158 #define PRINTFINISH \
159 if (NILP (printcharfun)) \
161 if (print_buffer_pos != print_buffer_pos_byte \
162 && NILP (BVAR (current_buffer, enable_multibyte_characters)))\
165 unsigned char *temp = SAFE_ALLOCA (print_buffer_pos + 1); \
166 copy_text ((unsigned char *) print_buffer, temp, \
167 print_buffer_pos_byte, 1, 0); \
168 insert_1_both ((char *) temp, print_buffer_pos, \
169 print_buffer_pos, 0, 1, 0); \
173 insert_1_both (print_buffer, print_buffer_pos, \
174 print_buffer_pos_byte, 0, 1, 0); \
175 signal_after_change (PT - print_buffer_pos, 0, print_buffer_pos);\
177 if (free_print_buffer) \
179 xfree (print_buffer); \
182 unbind_to (specpdl_count, Qnil); \
183 if (MARKERP (original)) \
184 set_marker_both (original, Qnil, PT, PT_BYTE); \
185 if (old_point >= 0) \
186 SET_PT_BOTH (old_point + (old_point >= start_point \
187 ? PT - start_point : 0), \
188 old_point_byte + (old_point_byte >= start_point_byte \
189 ? PT_BYTE - start_point_byte : 0)); \
190 set_buffer_internal (old);
192 /* This is used to restore the saved contents of print_buffer
193 when there is a recursive call to print. */
196 print_unwind (Lisp_Object saved_text
)
198 memcpy (print_buffer
, SDATA (saved_text
), SCHARS (saved_text
));
201 /* Print character CH to the stdio stream STREAM. */
204 printchar_to_stream (unsigned int ch
, FILE *stream
)
206 Lisp_Object dv UNINIT
;
207 ptrdiff_t i
= 0, n
= 1;
208 Lisp_Object coding_system
= Vlocale_coding_system
;
209 bool encode_p
= false;
211 if (!NILP (Vcoding_system_for_write
))
212 coding_system
= Vcoding_system_for_write
;
213 if (!NILP (coding_system
))
216 if (CHAR_VALID_P (ch
) && DISP_TABLE_P (Vstandard_display_table
))
218 dv
= DISP_CHAR_VECTOR (XCHAR_TABLE (Vstandard_display_table
), ch
);
228 if (ASCII_CHAR_P (ch
))
232 /* Send the output to a debugger (nothing happens if there
234 if (print_output_debug_flag
&& stream
== stderr
)
235 OutputDebugString ((char []) {ch
, '\0'});
240 unsigned char mbstr
[MAX_MULTIBYTE_LENGTH
];
241 int len
= CHAR_STRING (ch
, mbstr
);
242 Lisp_Object encoded_ch
=
243 make_multibyte_string ((char *) mbstr
, 1, len
);
246 encoded_ch
= code_convert_string_norecord (encoded_ch
,
247 coding_system
, true);
248 fwrite (SSDATA (encoded_ch
), 1, SBYTES (encoded_ch
), stream
);
250 if (print_output_debug_flag
&& stream
== stderr
)
251 OutputDebugString (SSDATA (encoded_ch
));
259 if (CHARACTERP (AREF (dv
, i
)))
263 ch
= XFASTINT (AREF (dv
, i
));
267 /* Print character CH using method FUN. FUN nil means print to
268 print_buffer. FUN t means print to echo area or stdout if
269 non-interactive. If FUN is neither nil nor t, call FUN with CH as
273 printchar (unsigned int ch
, Lisp_Object fun
)
275 if (!NILP (fun
) && !EQ (fun
, Qt
))
276 call1 (fun
, make_number (ch
));
279 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
280 int len
= CHAR_STRING (ch
, str
);
286 ptrdiff_t incr
= len
- (print_buffer_size
- print_buffer_pos_byte
);
288 print_buffer
= xpalloc (print_buffer
, &print_buffer_size
,
290 memcpy (print_buffer
+ print_buffer_pos_byte
, str
, len
);
291 print_buffer_pos
+= 1;
292 print_buffer_pos_byte
+= len
;
294 else if (noninteractive
)
296 printchar_stdout_last
= ch
;
297 if (DISP_TABLE_P (Vstandard_display_table
))
298 printchar_to_stream (ch
, stdout
);
300 fwrite (str
, 1, len
, stdout
);
301 noninteractive_need_newline
= 1;
306 = !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
308 setup_echo_area_for_printing (multibyte_p
);
310 message_dolog ((char *) str
, len
, 0, multibyte_p
);
316 /* Output SIZE characters, SIZE_BYTE bytes from string PTR using
317 method PRINTCHARFUN. PRINTCHARFUN nil means output to
318 print_buffer. PRINTCHARFUN t means output to the echo area or to
319 stdout if non-interactive. If neither nil nor t, call Lisp
320 function PRINTCHARFUN for each character printed. MULTIBYTE
321 non-zero means PTR contains multibyte characters.
323 In the case where PRINTCHARFUN is nil, it is safe for PTR to point
324 to data in a Lisp string. Otherwise that is not safe. */
327 strout (const char *ptr
, ptrdiff_t size
, ptrdiff_t size_byte
,
328 Lisp_Object printcharfun
)
330 if (NILP (printcharfun
))
332 ptrdiff_t incr
= size_byte
- (print_buffer_size
- print_buffer_pos_byte
);
334 print_buffer
= xpalloc (print_buffer
, &print_buffer_size
, incr
, -1, 1);
335 memcpy (print_buffer
+ print_buffer_pos_byte
, ptr
, size_byte
);
336 print_buffer_pos
+= size
;
337 print_buffer_pos_byte
+= size_byte
;
339 else if (noninteractive
&& EQ (printcharfun
, Qt
))
341 if (DISP_TABLE_P (Vstandard_display_table
))
344 for (ptrdiff_t i
= 0; i
< size_byte
; i
+= len
)
346 int ch
= STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr
+ i
,
348 printchar_to_stream (ch
, stdout
);
352 fwrite (ptr
, 1, size_byte
, stdout
);
354 noninteractive_need_newline
= 1;
356 else if (EQ (printcharfun
, Qt
))
358 /* Output to echo area. We're trying to avoid a little overhead
359 here, that's the reason we don't call printchar to do the
363 = !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
365 setup_echo_area_for_printing (multibyte_p
);
366 message_dolog (ptr
, size_byte
, 0, multibyte_p
);
368 if (size
== size_byte
)
370 for (i
= 0; i
< size
; ++i
)
371 insert_char ((unsigned char) *ptr
++);
376 for (i
= 0; i
< size_byte
; i
+= len
)
378 int ch
= STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr
+ i
,
386 /* PRINTCHARFUN is a Lisp function. */
389 if (size
== size_byte
)
391 while (i
< size_byte
)
394 printchar (ch
, printcharfun
);
399 while (i
< size_byte
)
401 /* Here, we must convert each multi-byte form to the
402 corresponding character code before handing it to
405 int ch
= STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr
+ i
,
407 printchar (ch
, printcharfun
);
414 /* Print the contents of a string STRING using PRINTCHARFUN.
415 It isn't safe to use strout in many cases,
416 because printing one char can relocate. */
419 print_string (Lisp_Object string
, Lisp_Object printcharfun
)
421 if (EQ (printcharfun
, Qt
) || NILP (printcharfun
))
425 if (print_escape_nonascii
)
426 string
= string_escape_byte8 (string
);
428 if (STRING_MULTIBYTE (string
))
429 chars
= SCHARS (string
);
430 else if (! print_escape_nonascii
431 && (EQ (printcharfun
, Qt
)
432 ? ! NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))
433 : ! NILP (BVAR (current_buffer
, enable_multibyte_characters
))))
435 /* If unibyte string STRING contains 8-bit codes, we must
436 convert STRING to a multibyte string containing the same
441 chars
= SBYTES (string
);
442 bytes
= count_size_as_multibyte (SDATA (string
), chars
);
445 newstr
= make_uninit_multibyte_string (chars
, bytes
);
446 memcpy (SDATA (newstr
), SDATA (string
), chars
);
447 str_to_multibyte (SDATA (newstr
), bytes
, chars
);
452 chars
= SBYTES (string
);
454 if (EQ (printcharfun
, Qt
))
456 /* Output to echo area. */
457 ptrdiff_t nbytes
= SBYTES (string
);
459 /* Copy the string contents so that relocation of STRING by
460 GC does not cause trouble. */
462 char *buffer
= SAFE_ALLOCA (nbytes
);
463 memcpy (buffer
, SDATA (string
), nbytes
);
465 strout (buffer
, chars
, nbytes
, printcharfun
);
470 /* No need to copy, since output to print_buffer can't GC. */
471 strout (SSDATA (string
), chars
, SBYTES (string
), printcharfun
);
475 /* Otherwise, string may be relocated by printing one char.
476 So re-fetch the string address for each character. */
478 ptrdiff_t size
= SCHARS (string
);
479 ptrdiff_t size_byte
= SBYTES (string
);
480 if (size
== size_byte
)
481 for (i
= 0; i
< size
; i
++)
482 printchar (SREF (string
, i
), printcharfun
);
484 for (i
= 0; i
< size_byte
; )
486 /* Here, we must convert each multi-byte form to the
487 corresponding character code before handing it to PRINTCHAR. */
489 int ch
= STRING_CHAR_AND_LENGTH (SDATA (string
) + i
, len
);
490 printchar (ch
, printcharfun
);
496 DEFUN ("write-char", Fwrite_char
, Swrite_char
, 1, 2, 0,
497 doc
: /* Output character CHARACTER to stream PRINTCHARFUN.
498 PRINTCHARFUN defaults to the value of `standard-output' (which see). */)
499 (Lisp_Object character
, Lisp_Object printcharfun
)
501 if (NILP (printcharfun
))
502 printcharfun
= Vstandard_output
;
503 CHECK_NUMBER (character
);
505 printchar (XINT (character
), printcharfun
);
510 /* Print the contents of a unibyte C string STRING using PRINTCHARFUN.
511 The caller should arrange to put this inside PRINTPREPARE and PRINTFINISH.
512 Do not use this on the contents of a Lisp string. */
515 print_c_string (char const *string
, Lisp_Object printcharfun
)
517 ptrdiff_t len
= strlen (string
);
518 strout (string
, len
, len
, printcharfun
);
521 /* Print unibyte C string at DATA on a specified stream PRINTCHARFUN.
522 Do not use this on the contents of a Lisp string. */
525 write_string_1 (const char *data
, Lisp_Object printcharfun
)
528 print_c_string (data
, printcharfun
);
532 /* Used from outside of print.c to print a C unibyte
533 string at DATA on the default output stream.
534 Do not use this on the contents of a Lisp string. */
537 write_string (const char *data
)
539 write_string_1 (data
, Vstandard_output
);
544 temp_output_buffer_setup (const char *bufname
)
546 ptrdiff_t count
= SPECPDL_INDEX ();
547 register struct buffer
*old
= current_buffer
;
548 register Lisp_Object buf
;
550 record_unwind_current_buffer ();
552 Fset_buffer (Fget_buffer_create (build_string (bufname
)));
554 Fkill_all_local_variables ();
555 delete_all_overlays (current_buffer
);
556 bset_directory (current_buffer
, BVAR (old
, directory
));
557 bset_read_only (current_buffer
, Qnil
);
558 bset_filename (current_buffer
, Qnil
);
559 bset_undo_list (current_buffer
, Qt
);
560 eassert (current_buffer
->overlays_before
== NULL
);
561 eassert (current_buffer
->overlays_after
== NULL
);
562 bset_enable_multibyte_characters
563 (current_buffer
, BVAR (&buffer_defaults
, enable_multibyte_characters
));
564 specbind (Qinhibit_read_only
, Qt
);
565 specbind (Qinhibit_modification_hooks
, Qt
);
567 XSETBUFFER (buf
, current_buffer
);
569 run_hook (Qtemp_buffer_setup_hook
);
571 unbind_to (count
, Qnil
);
573 specbind (Qstandard_output
, buf
);
576 static void print (Lisp_Object
, Lisp_Object
, bool);
577 static void print_preprocess (Lisp_Object
);
578 static void print_preprocess_string (INTERVAL
, Lisp_Object
);
579 static void print_object (Lisp_Object
, Lisp_Object
, bool);
581 DEFUN ("terpri", Fterpri
, Sterpri
, 0, 2, 0,
582 doc
: /* Output a newline to stream PRINTCHARFUN.
583 If ENSURE is non-nil only output a newline if not already at the
584 beginning of a line. Value is non-nil if a newline is printed.
585 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used. */)
586 (Lisp_Object printcharfun
, Lisp_Object ensure
)
590 if (NILP (printcharfun
))
591 printcharfun
= Vstandard_output
;
596 /* Difficult to check if at line beginning so abort. */
597 else if (FUNCTIONP (printcharfun
))
598 signal_error ("Unsupported function argument", printcharfun
);
599 else if (noninteractive
&& !NILP (printcharfun
))
600 val
= printchar_stdout_last
== 10 ? Qnil
: Qt
;
602 val
= NILP (Fbolp ()) ? Qt
: Qnil
;
605 printchar ('\n', printcharfun
);
610 DEFUN ("prin1", Fprin1
, Sprin1
, 1, 2, 0,
611 doc
: /* Output the printed representation of OBJECT, any Lisp object.
612 Quoting characters are printed when needed to make output that `read'
613 can handle, whenever this is possible. For complex objects, the behavior
614 is controlled by `print-level' and `print-length', which see.
616 OBJECT is any of the Lisp data types: a number, a string, a symbol,
617 a list, a buffer, a window, a frame, etc.
619 A printed representation of an object is text which describes that object.
621 Optional argument PRINTCHARFUN is the output stream, which can be one
624 - a buffer, in which case output is inserted into that buffer at point;
625 - a marker, in which case output is inserted at marker's position;
626 - a function, in which case that function is called once for each
627 character of OBJECT's printed representation;
628 - a symbol, in which case that symbol's function definition is called; or
629 - t, in which case the output is displayed in the echo area.
631 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
633 (Lisp_Object object
, Lisp_Object printcharfun
)
635 if (NILP (printcharfun
))
636 printcharfun
= Vstandard_output
;
638 print (object
, printcharfun
, 1);
643 /* a buffer which is used to hold output being built by prin1-to-string */
644 Lisp_Object Vprin1_to_string_buffer
;
646 DEFUN ("prin1-to-string", Fprin1_to_string
, Sprin1_to_string
, 1, 2, 0,
647 doc
: /* Return a string containing the printed representation of OBJECT.
648 OBJECT can be any Lisp object. This function outputs quoting characters
649 when necessary to make output that `read' can handle, whenever possible,
650 unless the optional second argument NOESCAPE is non-nil. For complex objects,
651 the behavior is controlled by `print-level' and `print-length', which see.
653 OBJECT is any of the Lisp data types: a number, a string, a symbol,
654 a list, a buffer, a window, a frame, etc.
656 A printed representation of an object is text which describes that object. */)
657 (Lisp_Object object
, Lisp_Object noescape
)
659 ptrdiff_t count
= SPECPDL_INDEX ();
661 specbind (Qinhibit_modification_hooks
, Qt
);
663 /* Save and restore this: we are altering a buffer
664 but we don't want to deactivate the mark just for that.
665 No need for specbind, since errors deactivate the mark. */
666 Lisp_Object save_deactivate_mark
= Vdeactivate_mark
;
668 Lisp_Object printcharfun
= Vprin1_to_string_buffer
;
670 print (object
, printcharfun
, NILP (noescape
));
671 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINISH */
674 struct buffer
*previous
= current_buffer
;
675 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer
));
676 object
= Fbuffer_string ();
677 if (SBYTES (object
) == SCHARS (object
))
678 STRING_SET_UNIBYTE (object
);
680 /* Note that this won't make prepare_to_modify_buffer call
681 ask-user-about-supersession-threat because this buffer
682 does not visit a file. */
684 set_buffer_internal (previous
);
686 Vdeactivate_mark
= save_deactivate_mark
;
688 return unbind_to (count
, object
);
691 DEFUN ("princ", Fprinc
, Sprinc
, 1, 2, 0,
692 doc
: /* Output the printed representation of OBJECT, any Lisp object.
693 No quoting characters are used; no delimiters are printed around
694 the contents of strings.
696 OBJECT is any of the Lisp data types: a number, a string, a symbol,
697 a list, a buffer, a window, a frame, etc.
699 A printed representation of an object is text which describes that object.
701 Optional argument PRINTCHARFUN is the output stream, which can be one
704 - a buffer, in which case output is inserted into that buffer at point;
705 - a marker, in which case output is inserted at marker's position;
706 - a function, in which case that function is called once for each
707 character of OBJECT's printed representation;
708 - a symbol, in which case that symbol's function definition is called; or
709 - t, in which case the output is displayed in the echo area.
711 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
713 (Lisp_Object object
, Lisp_Object printcharfun
)
715 if (NILP (printcharfun
))
716 printcharfun
= Vstandard_output
;
718 print (object
, printcharfun
, 0);
723 DEFUN ("print", Fprint
, Sprint
, 1, 2, 0,
724 doc
: /* Output the printed representation of OBJECT, with newlines around it.
725 Quoting characters are printed when needed to make output that `read'
726 can handle, whenever this is possible. For complex objects, the behavior
727 is controlled by `print-level' and `print-length', which see.
729 OBJECT is any of the Lisp data types: a number, a string, a symbol,
730 a list, a buffer, a window, a frame, etc.
732 A printed representation of an object is text which describes that object.
734 Optional argument PRINTCHARFUN is the output stream, which can be one
737 - a buffer, in which case output is inserted into that buffer at point;
738 - a marker, in which case output is inserted at marker's position;
739 - a function, in which case that function is called once for each
740 character of OBJECT's printed representation;
741 - a symbol, in which case that symbol's function definition is called; or
742 - t, in which case the output is displayed in the echo area.
744 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
746 (Lisp_Object object
, Lisp_Object printcharfun
)
748 if (NILP (printcharfun
))
749 printcharfun
= Vstandard_output
;
751 printchar ('\n', printcharfun
);
752 print (object
, printcharfun
, 1);
753 printchar ('\n', printcharfun
);
758 DEFUN ("external-debugging-output", Fexternal_debugging_output
, Sexternal_debugging_output
, 1, 1, 0,
759 doc
: /* Write CHARACTER to stderr.
760 You can call print while debugging emacs, and pass it this function
761 to make it write to the debugging output. */)
762 (Lisp_Object character
)
764 CHECK_NUMBER (character
);
765 printchar_to_stream (XINT (character
), stderr
);
769 /* This function is never called. Its purpose is to prevent
770 print_output_debug_flag from being optimized away. */
772 extern void debug_output_compilation_hack (bool) EXTERNALLY_VISIBLE
;
774 debug_output_compilation_hack (bool x
)
776 print_output_debug_flag
= x
;
779 DEFUN ("redirect-debugging-output", Fredirect_debugging_output
, Sredirect_debugging_output
,
781 "FDebug output file: \nP",
782 doc
: /* Redirect debugging output (stderr stream) to file FILE.
783 If FILE is nil, reset target to the initial stderr stream.
784 Optional arg APPEND non-nil (interactively, with prefix arg) means
785 append to existing target file. */)
786 (Lisp_Object file
, Lisp_Object append
)
788 /* If equal to STDERR_FILENO, stderr has not been duplicated and is OK as-is.
789 Otherwise, this is a close-on-exec duplicate of the original stderr. */
790 static int stderr_dup
= STDERR_FILENO
;
795 file
= Fexpand_file_name (file
, Qnil
);
797 if (stderr_dup
== STDERR_FILENO
)
799 int n
= fcntl (STDERR_FILENO
, F_DUPFD_CLOEXEC
, STDERR_FILENO
+ 1);
801 report_file_error ("dup", file
);
805 fd
= emacs_open (SSDATA (ENCODE_FILE (file
)),
807 | (! NILP (append
) ? O_APPEND
: O_TRUNC
)),
810 report_file_error ("Cannot open debugging output stream", file
);
814 if (dup2 (fd
, STDERR_FILENO
) < 0)
815 report_file_error ("dup2", file
);
816 if (fd
!= stderr_dup
)
822 /* This is the interface for debugging printing. */
825 debug_print (Lisp_Object arg
)
827 Fprin1 (arg
, Qexternal_debugging_output
);
828 fprintf (stderr
, "\r\n");
831 void safe_debug_print (Lisp_Object
) EXTERNALLY_VISIBLE
;
833 safe_debug_print (Lisp_Object arg
)
835 int valid
= valid_lisp_object_p (arg
);
841 EMACS_UINT n
= XLI (arg
);
842 fprintf (stderr
, "#<%s_LISP_OBJECT 0x%08"pI
"x>\r\n",
843 !valid
? "INVALID" : "SOME",
849 DEFUN ("error-message-string", Ferror_message_string
, Serror_message_string
,
851 doc
: /* Convert an error value (ERROR-SYMBOL . DATA) to an error message.
852 See Info anchor `(elisp)Definition of signal' for some details on how this
853 error message is constructed. */)
856 struct buffer
*old
= current_buffer
;
859 /* If OBJ is (error STRING), just return STRING.
860 That is not only faster, it also avoids the need to allocate
861 space here when the error is due to memory full. */
862 if (CONSP (obj
) && EQ (XCAR (obj
), Qerror
)
863 && CONSP (XCDR (obj
))
864 && STRINGP (XCAR (XCDR (obj
)))
865 && NILP (XCDR (XCDR (obj
))))
866 return XCAR (XCDR (obj
));
868 print_error_message (obj
, Vprin1_to_string_buffer
, 0, Qnil
);
870 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer
));
871 value
= Fbuffer_string ();
874 set_buffer_internal (old
);
879 /* Print an error message for the error DATA onto Lisp output stream
880 STREAM (suitable for the print functions).
881 CONTEXT is a C string describing the context of the error.
882 CALLER is the Lisp function inside which the error was signaled. */
885 print_error_message (Lisp_Object data
, Lisp_Object stream
, const char *context
,
888 Lisp_Object errname
, errmsg
, file_error
, tail
;
891 write_string_1 (context
, stream
);
893 /* If we know from where the error was signaled, show it in
895 if (!NILP (caller
) && SYMBOLP (caller
))
897 Lisp_Object cname
= SYMBOL_NAME (caller
);
898 ptrdiff_t cnamelen
= SBYTES (cname
);
900 char *name
= SAFE_ALLOCA (cnamelen
);
901 memcpy (name
, SDATA (cname
), cnamelen
);
902 message_dolog (name
, cnamelen
, 0, STRING_MULTIBYTE (cname
));
903 message_dolog (": ", 2, 0, 0);
907 errname
= Fcar (data
);
909 if (EQ (errname
, Qerror
))
914 errmsg
= Fcar (data
);
919 Lisp_Object error_conditions
= Fget (errname
, Qerror_conditions
);
920 errmsg
= Fsubstitute_command_keys (Fget (errname
, Qerror_message
));
921 file_error
= Fmemq (Qfile_error
, error_conditions
);
924 /* Print an error message including the data items. */
926 tail
= Fcdr_safe (data
);
928 /* For file-error, make error message by concatenating
929 all the data items. They are all strings. */
930 if (!NILP (file_error
) && CONSP (tail
))
931 errmsg
= XCAR (tail
), tail
= XCDR (tail
);
934 const char *sep
= ": ";
936 if (!STRINGP (errmsg
))
937 write_string_1 ("peculiar error", stream
);
938 else if (SCHARS (errmsg
))
939 Fprinc (errmsg
, stream
);
943 for (; CONSP (tail
); tail
= XCDR (tail
), sep
= ", ")
948 write_string_1 (sep
, stream
);
950 if (!NILP (file_error
)
951 || EQ (errname
, Qend_of_file
) || EQ (errname
, Quser_error
))
952 Fprinc (obj
, stream
);
954 Fprin1 (obj
, stream
);
962 * The buffer should be at least as large as the max string size of the
963 * largest float, printed in the biggest notation. This is undoubtedly
964 * 20d float_output_format, with the negative of the C-constant "HUGE"
967 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
969 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
970 * case of -1e307 in 20d float_output_format. What is one to do (short of
971 * re-writing _doprnt to be more sane)?
973 * Given the above, the buffer must be least FLOAT_TO_STRING_BUFSIZE bytes.
977 float_to_string (char *buf
, double data
)
983 /* Check for plus infinity in a way that won't lose
984 if there is no plus infinity. */
985 if (data
== data
/ 2 && data
> 1.0)
987 static char const infinity_string
[] = "1.0e+INF";
988 strcpy (buf
, infinity_string
);
989 return sizeof infinity_string
- 1;
991 /* Likewise for minus infinity. */
992 if (data
== data
/ 2 && data
< -1.0)
994 static char const minus_infinity_string
[] = "-1.0e+INF";
995 strcpy (buf
, minus_infinity_string
);
996 return sizeof minus_infinity_string
- 1;
998 /* Check for NaN in a way that won't fail if there are no NaNs. */
999 if (! (data
* 0.0 >= 0.0))
1001 /* Prepend "-" if the NaN's sign bit is negative.
1002 The sign bit of a double is the bit that is 1 in -0.0. */
1003 static char const NaN_string
[] = "0.0e+NaN";
1005 union { double d
; char c
[sizeof (double)]; } u_data
, u_minus_zero
;
1008 u_minus_zero
.d
= - 0.0;
1009 for (i
= 0; i
< sizeof (double); i
++)
1010 if (u_data
.c
[i
] & u_minus_zero
.c
[i
])
1017 strcpy (buf
+ negative
, NaN_string
);
1018 return negative
+ sizeof NaN_string
- 1;
1021 if (NILP (Vfloat_output_format
)
1022 || !STRINGP (Vfloat_output_format
))
1025 /* Generate the fewest number of digits that represent the
1026 floating point value without losing information. */
1027 len
= dtoastr (buf
, FLOAT_TO_STRING_BUFSIZE
- 2, 0, 0, data
);
1028 /* The decimal point must be printed, or the byte compiler can
1029 get confused (Bug#8033). */
1032 else /* oink oink */
1034 /* Check that the spec we have is fully valid.
1035 This means not only valid for printf,
1036 but meant for floats, and reasonable. */
1037 cp
= SSDATA (Vfloat_output_format
);
1046 /* Check the width specification. */
1048 if ('0' <= *cp
&& *cp
<= '9')
1053 width
= (width
* 10) + (*cp
++ - '0');
1054 if (DBL_DIG
< width
)
1057 while (*cp
>= '0' && *cp
<= '9');
1059 /* A precision of zero is valid only for %f. */
1060 if (width
== 0 && *cp
!= 'f')
1064 if (*cp
!= 'e' && *cp
!= 'f' && *cp
!= 'g')
1070 len
= sprintf (buf
, SSDATA (Vfloat_output_format
), data
);
1073 /* Make sure there is a decimal point with digit after, or an
1074 exponent, so that the value is readable as a float. But don't do
1075 this with "%.0f"; it's valid for that not to produce a decimal
1076 point. Note that width can be 0 only for %.0f. */
1079 for (cp
= buf
; *cp
; cp
++)
1080 if ((*cp
< '0' || *cp
> '9') && *cp
!= '-')
1083 if (*cp
== '.' && cp
[1] == 0)
1103 print (Lisp_Object obj
, Lisp_Object printcharfun
, bool escapeflag
)
1105 new_backquote_output
= 0;
1107 /* Reset print_number_index and Vprint_number_table only when
1108 the variable Vprint_continuous_numbering is nil. Otherwise,
1109 the values of these variables will be kept between several
1111 if (NILP (Vprint_continuous_numbering
)
1112 || NILP (Vprint_number_table
))
1114 print_number_index
= 0;
1115 Vprint_number_table
= Qnil
;
1118 /* Construct Vprint_number_table for print-gensym and print-circle. */
1119 if (!NILP (Vprint_gensym
) || !NILP (Vprint_circle
))
1121 /* Construct Vprint_number_table.
1122 This increments print_number_index for the objects added. */
1124 print_preprocess (obj
);
1126 if (HASH_TABLE_P (Vprint_number_table
))
1127 { /* Remove unnecessary objects, which appear only once in OBJ;
1128 that is, whose status is Qt. */
1129 struct Lisp_Hash_Table
*h
= XHASH_TABLE (Vprint_number_table
);
1132 for (i
= 0; i
< HASH_TABLE_SIZE (h
); ++i
)
1133 if (!NILP (HASH_HASH (h
, i
))
1134 && EQ (HASH_VALUE (h
, i
), Qt
))
1135 Fremhash (HASH_KEY (h
, i
), Vprint_number_table
);
1140 print_object (obj
, printcharfun
, escapeflag
);
1143 #define PRINT_CIRCLE_CANDIDATE_P(obj) \
1144 (STRINGP (obj) || CONSP (obj) \
1145 || (VECTORLIKEP (obj) \
1146 && (VECTORP (obj) || COMPILEDP (obj) \
1147 || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj) \
1148 || HASH_TABLE_P (obj) || FONTP (obj))) \
1149 || (! NILP (Vprint_gensym) \
1151 && !SYMBOL_INTERNED_P (obj)))
1153 /* Construct Vprint_number_table according to the structure of OBJ.
1154 OBJ itself and all its elements will be added to Vprint_number_table
1155 recursively if it is a list, vector, compiled function, char-table,
1156 string (its text properties will be traced), or a symbol that has
1157 no obarray (this is for the print-gensym feature).
1158 The status fields of Vprint_number_table mean whether each object appears
1159 more than once in OBJ: Qnil at the first time, and Qt after that. */
1161 print_preprocess (Lisp_Object obj
)
1166 Lisp_Object halftail
;
1168 /* Avoid infinite recursion for circular nested structure
1169 in the case where Vprint_circle is nil. */
1170 if (NILP (Vprint_circle
))
1172 /* Give up if we go so deep that print_object will get an error. */
1173 /* See similar code in print_object. */
1174 if (print_depth
>= PRINT_CIRCLE
)
1175 error ("Apparently circular structure being printed");
1177 for (i
= 0; i
< print_depth
; i
++)
1178 if (EQ (obj
, being_printed
[i
]))
1180 being_printed
[print_depth
] = obj
;
1187 if (PRINT_CIRCLE_CANDIDATE_P (obj
))
1189 if (!HASH_TABLE_P (Vprint_number_table
))
1190 Vprint_number_table
= CALLN (Fmake_hash_table
, QCtest
, Qeq
);
1192 /* In case print-circle is nil and print-gensym is t,
1193 add OBJ to Vprint_number_table only when OBJ is a symbol. */
1194 if (! NILP (Vprint_circle
) || SYMBOLP (obj
))
1196 Lisp_Object num
= Fgethash (obj
, Vprint_number_table
, Qnil
);
1198 /* If Vprint_continuous_numbering is non-nil and OBJ is a gensym,
1199 always print the gensym with a number. This is a special for
1200 the lisp function byte-compile-output-docform. */
1201 || (!NILP (Vprint_continuous_numbering
)
1203 && !SYMBOL_INTERNED_P (obj
)))
1204 { /* OBJ appears more than once. Let's remember that. */
1205 if (!INTEGERP (num
))
1207 print_number_index
++;
1208 /* Negative number indicates it hasn't been printed yet. */
1209 Fputhash (obj
, make_number (- print_number_index
),
1210 Vprint_number_table
);
1216 /* OBJ is not yet recorded. Let's add to the table. */
1217 Fputhash (obj
, Qt
, Vprint_number_table
);
1220 switch (XTYPE (obj
))
1223 /* A string may have text properties, which can be circular. */
1224 traverse_intervals_noorder (string_intervals (obj
),
1225 print_preprocess_string
, Qnil
);
1229 /* Use HALFTAIL and LOOP_COUNT to detect circular lists,
1230 just as in print_object. */
1231 if (loop_count
&& EQ (obj
, halftail
))
1233 print_preprocess (XCAR (obj
));
1236 if (!(loop_count
& 1))
1237 halftail
= XCDR (halftail
);
1240 case Lisp_Vectorlike
:
1242 if (size
& PSEUDOVECTOR_FLAG
)
1243 size
&= PSEUDOVECTOR_SIZE_MASK
;
1244 for (i
= (SUB_CHAR_TABLE_P (obj
)
1245 ? SUB_CHAR_TABLE_OFFSET
: 0); i
< size
; i
++)
1246 print_preprocess (AREF (obj
, i
));
1247 if (HASH_TABLE_P (obj
))
1248 { /* For hash tables, the key_and_value slot is past
1249 `size' because it needs to be marked specially in case
1250 the table is weak. */
1251 struct Lisp_Hash_Table
*h
= XHASH_TABLE (obj
);
1252 print_preprocess (h
->key_and_value
);
1264 print_preprocess_string (INTERVAL interval
, Lisp_Object arg
)
1266 print_preprocess (interval
->plist
);
1269 static void print_check_string_charset_prop (INTERVAL interval
, Lisp_Object string
);
1271 #define PRINT_STRING_NON_CHARSET_FOUND 1
1272 #define PRINT_STRING_UNSAFE_CHARSET_FOUND 2
1274 /* Bitwise or of the above macros. */
1275 static int print_check_string_result
;
1278 print_check_string_charset_prop (INTERVAL interval
, Lisp_Object string
)
1282 if (NILP (interval
->plist
)
1283 || (print_check_string_result
== (PRINT_STRING_NON_CHARSET_FOUND
1284 | PRINT_STRING_UNSAFE_CHARSET_FOUND
)))
1286 for (val
= interval
->plist
; CONSP (val
) && ! EQ (XCAR (val
), Qcharset
);
1287 val
= XCDR (XCDR (val
)));
1290 print_check_string_result
|= PRINT_STRING_NON_CHARSET_FOUND
;
1293 if (! (print_check_string_result
& PRINT_STRING_NON_CHARSET_FOUND
))
1295 if (! EQ (val
, interval
->plist
)
1296 || CONSP (XCDR (XCDR (val
))))
1297 print_check_string_result
|= PRINT_STRING_NON_CHARSET_FOUND
;
1299 if (NILP (Vprint_charset_text_property
)
1300 || ! (print_check_string_result
& PRINT_STRING_UNSAFE_CHARSET_FOUND
))
1303 ptrdiff_t charpos
= interval
->position
;
1304 ptrdiff_t bytepos
= string_char_to_byte (string
, charpos
);
1305 Lisp_Object charset
;
1307 charset
= XCAR (XCDR (val
));
1308 for (i
= 0; i
< LENGTH (interval
); i
++)
1310 FETCH_STRING_CHAR_ADVANCE (c
, string
, charpos
, bytepos
);
1311 if (! ASCII_CHAR_P (c
)
1312 && ! EQ (CHARSET_NAME (CHAR_CHARSET (c
)), charset
))
1314 print_check_string_result
|= PRINT_STRING_UNSAFE_CHARSET_FOUND
;
1321 /* The value is (charset . nil). */
1322 static Lisp_Object print_prune_charset_plist
;
1325 print_prune_string_charset (Lisp_Object string
)
1327 print_check_string_result
= 0;
1328 traverse_intervals (string_intervals (string
), 0,
1329 print_check_string_charset_prop
, string
);
1330 if (! (print_check_string_result
& PRINT_STRING_UNSAFE_CHARSET_FOUND
))
1332 string
= Fcopy_sequence (string
);
1333 if (print_check_string_result
& PRINT_STRING_NON_CHARSET_FOUND
)
1335 if (NILP (print_prune_charset_plist
))
1336 print_prune_charset_plist
= list1 (Qcharset
);
1337 Fremove_text_properties (make_number (0),
1338 make_number (SCHARS (string
)),
1339 print_prune_charset_plist
, string
);
1342 Fset_text_properties (make_number (0), make_number (SCHARS (string
)),
1349 print_object (Lisp_Object obj
, Lisp_Object printcharfun
, bool escapeflag
)
1351 char buf
[max (sizeof "from..to..in " + 2 * INT_STRLEN_BOUND (EMACS_INT
),
1352 max (sizeof " . #" + INT_STRLEN_BOUND (printmax_t
),
1357 /* Detect circularities and truncate them. */
1358 if (NILP (Vprint_circle
))
1360 /* Simple but incomplete way. */
1363 /* See similar code in print_preprocess. */
1364 if (print_depth
>= PRINT_CIRCLE
)
1365 error ("Apparently circular structure being printed");
1367 for (i
= 0; i
< print_depth
; i
++)
1368 if (EQ (obj
, being_printed
[i
]))
1370 int len
= sprintf (buf
, "#%d", i
);
1371 strout (buf
, len
, len
, printcharfun
);
1374 being_printed
[print_depth
] = obj
;
1376 else if (PRINT_CIRCLE_CANDIDATE_P (obj
))
1378 /* With the print-circle feature. */
1379 Lisp_Object num
= Fgethash (obj
, Vprint_number_table
, Qnil
);
1382 EMACS_INT n
= XINT (num
);
1384 { /* Add a prefix #n= if OBJ has not yet been printed;
1385 that is, its status field is nil. */
1386 int len
= sprintf (buf
, "#%"pI
"d=", -n
);
1387 strout (buf
, len
, len
, printcharfun
);
1388 /* OBJ is going to be printed. Remember that fact. */
1389 Fputhash (obj
, make_number (- n
), Vprint_number_table
);
1393 /* Just print #n# if OBJ has already been printed. */
1394 int len
= sprintf (buf
, "#%"pI
"d#", n
);
1395 strout (buf
, len
, len
, printcharfun
);
1403 switch (XTYPE (obj
))
1407 int len
= sprintf (buf
, "%"pI
"d", XINT (obj
));
1408 strout (buf
, len
, len
, printcharfun
);
1414 char pigbuf
[FLOAT_TO_STRING_BUFSIZE
];
1415 int len
= float_to_string (pigbuf
, XFLOAT_DATA (obj
));
1416 strout (pigbuf
, len
, len
, printcharfun
);
1422 print_string (obj
, printcharfun
);
1425 ptrdiff_t i
, i_byte
;
1426 ptrdiff_t size_byte
;
1427 /* True means we must ensure that the next character we output
1428 cannot be taken as part of a hex character escape. */
1429 bool need_nonhex
= false;
1430 bool multibyte
= STRING_MULTIBYTE (obj
);
1432 if (! EQ (Vprint_charset_text_property
, Qt
))
1433 obj
= print_prune_string_charset (obj
);
1435 if (string_intervals (obj
))
1436 print_c_string ("#(", printcharfun
);
1438 printchar ('\"', printcharfun
);
1439 size_byte
= SBYTES (obj
);
1441 for (i
= 0, i_byte
= 0; i_byte
< size_byte
;)
1443 /* Here, we must convert each multi-byte form to the
1444 corresponding character code before handing it to printchar. */
1447 FETCH_STRING_CHAR_ADVANCE (c
, obj
, i
, i_byte
);
1452 ? (CHAR_BYTE8_P (c
) && (c
= CHAR_TO_BYTE8 (c
), true))
1453 : (SINGLE_BYTE_CHAR_P (c
) && ! ASCII_CHAR_P (c
)
1454 && print_escape_nonascii
))
1456 /* When printing a raw 8-bit byte in a multibyte buffer, or
1457 (when requested) a non-ASCII character in a unibyte buffer,
1458 print single-byte non-ASCII string chars
1459 using octal escapes. */
1461 int len
= sprintf (outbuf
, "\\%03o", c
+ 0u);
1462 strout (outbuf
, len
, len
, printcharfun
);
1463 need_nonhex
= false;
1466 && ! ASCII_CHAR_P (c
) && print_escape_multibyte
)
1468 /* When requested, print multibyte chars using hex escapes. */
1469 char outbuf
[sizeof "\\x" + INT_STRLEN_BOUND (c
)];
1470 int len
= sprintf (outbuf
, "\\x%04x", c
+ 0u);
1471 strout (outbuf
, len
, len
, printcharfun
);
1476 /* If we just had a hex escape, and this character
1477 could be taken as part of it,
1478 output `\ ' to prevent that. */
1479 if (need_nonhex
&& c_isxdigit (c
))
1480 print_c_string ("\\ ", printcharfun
);
1482 if (c
== '\n' && print_escape_newlines
1484 : c
== '\f' && print_escape_newlines
1486 : c
== '\"' || c
== '\\')
1487 printchar ('\\', printcharfun
);
1489 printchar (c
, printcharfun
);
1490 need_nonhex
= false;
1493 printchar ('\"', printcharfun
);
1495 if (string_intervals (obj
))
1497 traverse_intervals (string_intervals (obj
),
1498 0, print_interval
, printcharfun
);
1499 printchar (')', printcharfun
);
1507 unsigned char *p
= SDATA (SYMBOL_NAME (obj
));
1508 unsigned char *end
= p
+ SBYTES (SYMBOL_NAME (obj
));
1510 ptrdiff_t i
, i_byte
;
1511 ptrdiff_t size_byte
;
1514 name
= SYMBOL_NAME (obj
);
1516 if (p
!= end
&& (*p
== '-' || *p
== '+')) p
++;
1519 /* If symbol name begins with a digit, and ends with a digit,
1520 and contains nothing but digits and `e', it could be treated
1521 as a number. So set CONFUSING.
1523 Symbols that contain periods could also be taken as numbers,
1524 but periods are always escaped, so we don't have to worry
1526 else if (*p
>= '0' && *p
<= '9'
1527 && end
[-1] >= '0' && end
[-1] <= '9')
1529 while (p
!= end
&& ((*p
>= '0' && *p
<= '9')
1530 /* Needed for \2e10. */
1531 || *p
== 'e' || *p
== 'E'))
1533 confusing
= (end
== p
);
1538 size_byte
= SBYTES (name
);
1540 if (! NILP (Vprint_gensym
) && !SYMBOL_INTERNED_P (obj
))
1541 print_c_string ("#:", printcharfun
);
1542 else if (size_byte
== 0)
1544 print_c_string ("##", printcharfun
);
1548 for (i
= 0, i_byte
= 0; i_byte
< size_byte
;)
1550 /* Here, we must convert each multi-byte form to the
1551 corresponding character code before handing it to PRINTCHAR. */
1552 FETCH_STRING_CHAR_ADVANCE (c
, name
, i
, i_byte
);
1557 if (c
== '\"' || c
== '\\' || c
== '\''
1558 || c
== ';' || c
== '#' || c
== '(' || c
== ')'
1559 || c
== ',' || c
== '.' || c
== '`'
1560 || c
== '[' || c
== ']' || c
== '?' || c
<= 040
1563 printchar ('\\', printcharfun
);
1567 printchar (c
, printcharfun
);
1573 /* If deeper than spec'd depth, print placeholder. */
1574 if (INTEGERP (Vprint_level
)
1575 && print_depth
> XINT (Vprint_level
))
1576 print_c_string ("...", printcharfun
);
1577 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1578 && EQ (XCAR (obj
), Qquote
))
1580 printchar ('\'', printcharfun
);
1581 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1583 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1584 && EQ (XCAR (obj
), Qfunction
))
1586 print_c_string ("#'", printcharfun
);
1587 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1589 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1590 && EQ (XCAR (obj
), Qbackquote
))
1592 printchar ('`', printcharfun
);
1593 new_backquote_output
++;
1594 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1595 new_backquote_output
--;
1597 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1598 && new_backquote_output
1599 && (EQ (XCAR (obj
), Qcomma
)
1600 || EQ (XCAR (obj
), Qcomma_at
)
1601 || EQ (XCAR (obj
), Qcomma_dot
)))
1603 print_object (XCAR (obj
), printcharfun
, false);
1604 new_backquote_output
--;
1605 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1606 new_backquote_output
++;
1610 printchar ('(', printcharfun
);
1612 Lisp_Object halftail
= obj
;
1614 /* Negative values of print-length are invalid in CL.
1615 Treat them like nil, as CMUCL does. */
1616 printmax_t print_length
= (NATNUMP (Vprint_length
)
1617 ? XFASTINT (Vprint_length
)
1618 : TYPE_MAXIMUM (printmax_t
));
1623 /* Detect circular list. */
1624 if (NILP (Vprint_circle
))
1626 /* Simple but incomplete way. */
1627 if (i
!= 0 && EQ (obj
, halftail
))
1629 int len
= sprintf (buf
, " . #%"pMd
, i
/ 2);
1630 strout (buf
, len
, len
, printcharfun
);
1636 /* With the print-circle feature. */
1639 Lisp_Object num
= Fgethash (obj
, Vprint_number_table
, Qnil
);
1642 print_c_string (" . ", printcharfun
);
1643 print_object (obj
, printcharfun
, escapeflag
);
1650 printchar (' ', printcharfun
);
1652 if (print_length
<= i
)
1654 print_c_string ("...", printcharfun
);
1659 print_object (XCAR (obj
), printcharfun
, escapeflag
);
1663 halftail
= XCDR (halftail
);
1666 /* OBJ non-nil here means it's the end of a dotted list. */
1669 print_c_string (" . ", printcharfun
);
1670 print_object (obj
, printcharfun
, escapeflag
);
1674 printchar (')', printcharfun
);
1678 case Lisp_Vectorlike
:
1683 print_c_string ("#<process ", printcharfun
);
1684 print_string (XPROCESS (obj
)->name
, printcharfun
);
1685 printchar ('>', printcharfun
);
1688 print_string (XPROCESS (obj
)->name
, printcharfun
);
1690 else if (BOOL_VECTOR_P (obj
))
1694 EMACS_INT size
= bool_vector_size (obj
);
1695 ptrdiff_t size_in_chars
= bool_vector_bytes (size
);
1696 ptrdiff_t real_size_in_chars
= size_in_chars
;
1698 int len
= sprintf (buf
, "#&%"pI
"d\"", size
);
1699 strout (buf
, len
, len
, printcharfun
);
1701 /* Don't print more characters than the specified maximum.
1702 Negative values of print-length are invalid. Treat them
1703 like a print-length of nil. */
1704 if (NATNUMP (Vprint_length
)
1705 && XFASTINT (Vprint_length
) < size_in_chars
)
1706 size_in_chars
= XFASTINT (Vprint_length
);
1708 for (i
= 0; i
< size_in_chars
; i
++)
1711 c
= bool_vector_uchar_data (obj
)[i
];
1712 if (c
== '\n' && print_escape_newlines
)
1713 print_c_string ("\\n", printcharfun
);
1714 else if (c
== '\f' && print_escape_newlines
)
1715 print_c_string ("\\f", printcharfun
);
1716 else if (c
> '\177')
1718 /* Use octal escapes to avoid encoding issues. */
1719 len
= sprintf (buf
, "\\%o", c
);
1720 strout (buf
, len
, len
, printcharfun
);
1724 if (c
== '\"' || c
== '\\')
1725 printchar ('\\', printcharfun
);
1726 printchar (c
, printcharfun
);
1730 if (size_in_chars
< real_size_in_chars
)
1731 print_c_string (" ...", printcharfun
);
1732 printchar ('\"', printcharfun
);
1734 else if (SUBRP (obj
))
1736 print_c_string ("#<subr ", printcharfun
);
1737 print_c_string (XSUBR (obj
)->symbol_name
, printcharfun
);
1738 printchar ('>', printcharfun
);
1740 else if (XWIDGETP (obj
) || XWIDGET_VIEW_P (obj
))
1742 print_c_string ("#<xwidget ", printcharfun
);
1743 printchar ('>', printcharfun
);
1745 else if (WINDOWP (obj
))
1747 int len
= sprintf (buf
, "#<window %"pI
"d",
1748 XWINDOW (obj
)->sequence_number
);
1749 strout (buf
, len
, len
, printcharfun
);
1750 if (BUFFERP (XWINDOW (obj
)->contents
))
1752 print_c_string (" on ", printcharfun
);
1753 print_string (BVAR (XBUFFER (XWINDOW (obj
)->contents
), name
),
1756 printchar ('>', printcharfun
);
1758 else if (TERMINALP (obj
))
1760 struct terminal
*t
= XTERMINAL (obj
);
1761 int len
= sprintf (buf
, "#<terminal %d", t
->id
);
1762 strout (buf
, len
, len
, printcharfun
);
1765 print_c_string (" on ", printcharfun
);
1766 print_c_string (t
->name
, printcharfun
);
1768 printchar ('>', printcharfun
);
1770 else if (HASH_TABLE_P (obj
))
1772 struct Lisp_Hash_Table
*h
= XHASH_TABLE (obj
);
1774 ptrdiff_t real_size
, size
;
1778 print_c_string ("#<hash-table", printcharfun
);
1779 if (SYMBOLP (h
->test
))
1781 print_c_string (" '", printcharfun
);
1782 print_c_string (SSDATA (SYMBOL_NAME (h
->test
)), printcharfun
);
1783 printchar (' ', printcharfun
);
1784 print_c_string (SSDATA (SYMBOL_NAME (h
->weak
)), printcharfun
);
1785 len
= sprintf (buf
, " %"pD
"d/%"pD
"d", h
->count
, ASIZE (h
->next
));
1786 strout (buf
, len
, len
, printcharfun
);
1788 len
= sprintf (buf
, " %p>", ptr
);
1789 strout (buf
, len
, len
, printcharfun
);
1791 /* Implement a readable output, e.g.:
1792 #s(hash-table size 2 test equal data (k1 v1 k2 v2)) */
1793 /* Always print the size. */
1794 len
= sprintf (buf
, "#s(hash-table size %"pD
"d", ASIZE (h
->next
));
1795 strout (buf
, len
, len
, printcharfun
);
1797 if (!NILP (h
->test
.name
))
1799 print_c_string (" test ", printcharfun
);
1800 print_object (h
->test
.name
, printcharfun
, escapeflag
);
1803 if (!NILP (h
->weak
))
1805 print_c_string (" weakness ", printcharfun
);
1806 print_object (h
->weak
, printcharfun
, escapeflag
);
1809 if (!NILP (h
->rehash_size
))
1811 print_c_string (" rehash-size ", printcharfun
);
1812 print_object (h
->rehash_size
, printcharfun
, escapeflag
);
1815 if (!NILP (h
->rehash_threshold
))
1817 print_c_string (" rehash-threshold ", printcharfun
);
1818 print_object (h
->rehash_threshold
, printcharfun
, escapeflag
);
1821 print_c_string (" data ", printcharfun
);
1823 /* Print the data here as a plist. */
1824 real_size
= HASH_TABLE_SIZE (h
);
1827 /* Don't print more elements than the specified maximum. */
1828 if (NATNUMP (Vprint_length
)
1829 && XFASTINT (Vprint_length
) < size
)
1830 size
= XFASTINT (Vprint_length
);
1832 printchar ('(', printcharfun
);
1833 for (i
= 0; i
< size
; i
++)
1834 if (!NILP (HASH_HASH (h
, i
)))
1836 if (i
) printchar (' ', printcharfun
);
1837 print_object (HASH_KEY (h
, i
), printcharfun
, escapeflag
);
1838 printchar (' ', printcharfun
);
1839 print_object (HASH_VALUE (h
, i
), printcharfun
, escapeflag
);
1842 if (size
< real_size
)
1843 print_c_string (" ...", printcharfun
);
1845 print_c_string ("))", printcharfun
);
1848 else if (BUFFERP (obj
))
1850 if (!BUFFER_LIVE_P (XBUFFER (obj
)))
1851 print_c_string ("#<killed buffer>", printcharfun
);
1852 else if (escapeflag
)
1854 print_c_string ("#<buffer ", printcharfun
);
1855 print_string (BVAR (XBUFFER (obj
), name
), printcharfun
);
1856 printchar ('>', printcharfun
);
1859 print_string (BVAR (XBUFFER (obj
), name
), printcharfun
);
1861 else if (WINDOW_CONFIGURATIONP (obj
))
1862 print_c_string ("#<window-configuration>", printcharfun
);
1863 else if (FRAMEP (obj
))
1866 void *ptr
= XFRAME (obj
);
1867 Lisp_Object frame_name
= XFRAME (obj
)->name
;
1869 print_c_string ((FRAME_LIVE_P (XFRAME (obj
))
1873 if (!STRINGP (frame_name
))
1875 /* A frame could be too young and have no name yet;
1877 if (SYMBOLP (frame_name
))
1878 frame_name
= Fsymbol_name (frame_name
);
1879 else /* can't happen: name should be either nil or string */
1880 frame_name
= build_string ("*INVALID*FRAME*NAME*");
1882 print_string (frame_name
, printcharfun
);
1883 len
= sprintf (buf
, " %p>", ptr
);
1884 strout (buf
, len
, len
, printcharfun
);
1886 else if (FONTP (obj
))
1890 if (! FONT_OBJECT_P (obj
))
1892 if (FONT_SPEC_P (obj
))
1893 print_c_string ("#<font-spec", printcharfun
);
1895 print_c_string ("#<font-entity", printcharfun
);
1896 for (i
= 0; i
< FONT_SPEC_MAX
; i
++)
1898 printchar (' ', printcharfun
);
1899 if (i
< FONT_WEIGHT_INDEX
|| i
> FONT_WIDTH_INDEX
)
1900 print_object (AREF (obj
, i
), printcharfun
, escapeflag
);
1902 print_object (font_style_symbolic (obj
, i
, 0),
1903 printcharfun
, escapeflag
);
1908 print_c_string ("#<font-object ", printcharfun
);
1909 print_object (AREF (obj
, FONT_NAME_INDEX
), printcharfun
,
1912 printchar ('>', printcharfun
);
1916 ptrdiff_t size
= ASIZE (obj
);
1917 if (COMPILEDP (obj
))
1919 printchar ('#', printcharfun
);
1920 size
&= PSEUDOVECTOR_SIZE_MASK
;
1922 if (CHAR_TABLE_P (obj
) || SUB_CHAR_TABLE_P (obj
))
1924 /* We print a char-table as if it were a vector,
1925 lumping the parent and default slots in with the
1926 character slots. But we add #^ as a prefix. */
1928 /* Make each lowest sub_char_table start a new line.
1929 Otherwise we'll make a line extremely long, which
1930 results in slow redisplay. */
1931 if (SUB_CHAR_TABLE_P (obj
)
1932 && XSUB_CHAR_TABLE (obj
)->depth
== 3)
1933 printchar ('\n', printcharfun
);
1934 print_c_string ("#^", printcharfun
);
1935 if (SUB_CHAR_TABLE_P (obj
))
1936 printchar ('^', printcharfun
);
1937 size
&= PSEUDOVECTOR_SIZE_MASK
;
1939 if (size
& PSEUDOVECTOR_FLAG
)
1942 printchar ('[', printcharfun
);
1944 int i
, idx
= SUB_CHAR_TABLE_P (obj
) ? SUB_CHAR_TABLE_OFFSET
: 0;
1946 ptrdiff_t real_size
= size
;
1948 /* For a sub char-table, print heading non-Lisp data first. */
1949 if (SUB_CHAR_TABLE_P (obj
))
1951 i
= sprintf (buf
, "%d %d", XSUB_CHAR_TABLE (obj
)->depth
,
1952 XSUB_CHAR_TABLE (obj
)->min_char
);
1953 strout (buf
, i
, i
, printcharfun
);
1956 /* Don't print more elements than the specified maximum. */
1957 if (NATNUMP (Vprint_length
)
1958 && XFASTINT (Vprint_length
) < size
)
1959 size
= XFASTINT (Vprint_length
);
1961 for (i
= idx
; i
< size
; i
++)
1963 if (i
) printchar (' ', printcharfun
);
1964 tem
= AREF (obj
, i
);
1965 print_object (tem
, printcharfun
, escapeflag
);
1967 if (size
< real_size
)
1968 print_c_string (" ...", printcharfun
);
1970 printchar (']', printcharfun
);
1975 switch (XMISCTYPE (obj
))
1977 case Lisp_Misc_Marker
:
1978 print_c_string ("#<marker ", printcharfun
);
1979 /* Do you think this is necessary? */
1980 if (XMARKER (obj
)->insertion_type
!= 0)
1981 print_c_string ("(moves after insertion) ", printcharfun
);
1982 if (! XMARKER (obj
)->buffer
)
1983 print_c_string ("in no buffer", printcharfun
);
1986 int len
= sprintf (buf
, "at %"pD
"d in ", marker_position (obj
));
1987 strout (buf
, len
, len
, printcharfun
);
1988 print_string (BVAR (XMARKER (obj
)->buffer
, name
), printcharfun
);
1990 printchar ('>', printcharfun
);
1993 case Lisp_Misc_Overlay
:
1994 print_c_string ("#<overlay ", printcharfun
);
1995 if (! XMARKER (OVERLAY_START (obj
))->buffer
)
1996 print_c_string ("in no buffer", printcharfun
);
1999 int len
= sprintf (buf
, "from %"pD
"d to %"pD
"d in ",
2000 marker_position (OVERLAY_START (obj
)),
2001 marker_position (OVERLAY_END (obj
)));
2002 strout (buf
, len
, len
, printcharfun
);
2003 print_string (BVAR (XMARKER (OVERLAY_START (obj
))->buffer
, name
),
2006 printchar ('>', printcharfun
);
2010 case Lisp_Misc_User_Ptr
:
2012 print_c_string ("#<user-ptr ", printcharfun
);
2013 int i
= sprintf (buf
, "ptr=%p finalizer=%p",
2015 XUSER_PTR (obj
)->finalizer
);
2016 strout (buf
, i
, i
, printcharfun
);
2017 printchar ('>', printcharfun
);
2022 case Lisp_Misc_Finalizer
:
2023 print_c_string ("#<finalizer", printcharfun
);
2024 if (NILP (XFINALIZER (obj
)->function
))
2025 print_c_string (" used", printcharfun
);
2026 printchar ('>', printcharfun
);
2029 /* Remaining cases shouldn't happen in normal usage, but let's
2030 print them anyway for the benefit of the debugger. */
2032 case Lisp_Misc_Free
:
2033 print_c_string ("#<misc free cell>", printcharfun
);
2036 case Lisp_Misc_Save_Value
:
2039 struct Lisp_Save_Value
*v
= XSAVE_VALUE (obj
);
2041 print_c_string ("#<save-value ", printcharfun
);
2043 if (v
->save_type
== SAVE_TYPE_MEMORY
)
2045 ptrdiff_t amount
= v
->data
[1].integer
;
2047 /* valid_lisp_object_p is reliable, so try to print up
2048 to 8 saved objects. This code is rarely used, so
2049 it's OK that valid_lisp_object_p is slow. */
2051 int limit
= min (amount
, 8);
2052 Lisp_Object
*area
= v
->data
[0].pointer
;
2054 i
= sprintf (buf
, "with %"pD
"d objects", amount
);
2055 strout (buf
, i
, i
, printcharfun
);
2057 for (i
= 0; i
< limit
; i
++)
2059 Lisp_Object maybe
= area
[i
];
2060 int valid
= valid_lisp_object_p (maybe
);
2062 printchar (' ', printcharfun
);
2064 print_object (maybe
, printcharfun
, escapeflag
);
2066 print_c_string (valid
< 0 ? "<some>" : "<invalid>",
2069 if (i
== limit
&& i
< amount
)
2070 print_c_string (" ...", printcharfun
);
2074 /* Print each slot according to its type. */
2076 for (index
= 0; index
< SAVE_VALUE_SLOTS
; index
++)
2079 printchar (' ', printcharfun
);
2081 switch (save_type (v
, index
))
2084 i
= sprintf (buf
, "<unused>");
2088 i
= sprintf (buf
, "<pointer %p>",
2089 v
->data
[index
].pointer
);
2092 case SAVE_FUNCPOINTER
:
2093 i
= sprintf (buf
, "<funcpointer %p>",
2094 ((void *) (intptr_t)
2095 v
->data
[index
].funcpointer
));
2099 i
= sprintf (buf
, "<integer %"pD
"d>",
2100 v
->data
[index
].integer
);
2104 print_object (v
->data
[index
].object
, printcharfun
,
2112 strout (buf
, i
, i
, printcharfun
);
2115 printchar ('>', printcharfun
);
2128 /* We're in trouble if this happens!
2129 Probably should just emacs_abort (). */
2130 print_c_string ("#<EMACS BUG: INVALID DATATYPE ", printcharfun
);
2132 len
= sprintf (buf
, "(MISC 0x%04x)", (unsigned) XMISCTYPE (obj
));
2133 else if (VECTORLIKEP (obj
))
2134 len
= sprintf (buf
, "(PVEC 0x%08zx)", (size_t) ASIZE (obj
));
2136 len
= sprintf (buf
, "(0x%02x)", (unsigned) XTYPE (obj
));
2137 strout (buf
, len
, len
, printcharfun
);
2138 print_c_string ((" Save your buffers immediately"
2139 " and please report this bug>"),
2148 /* Print a description of INTERVAL using PRINTCHARFUN.
2149 This is part of printing a string that has text properties. */
2152 print_interval (INTERVAL interval
, Lisp_Object printcharfun
)
2154 if (NILP (interval
->plist
))
2156 printchar (' ', printcharfun
);
2157 print_object (make_number (interval
->position
), printcharfun
, 1);
2158 printchar (' ', printcharfun
);
2159 print_object (make_number (interval
->position
+ LENGTH (interval
)),
2161 printchar (' ', printcharfun
);
2162 print_object (interval
->plist
, printcharfun
, 1);
2165 /* Initialize debug_print stuff early to have it working from the very
2169 init_print_once (void)
2171 /* The subroutine object for external-debugging-output is kept here
2172 for the convenience of the debugger. */
2173 DEFSYM (Qexternal_debugging_output
, "external-debugging-output");
2175 defsubr (&Sexternal_debugging_output
);
2179 syms_of_print (void)
2181 DEFSYM (Qtemp_buffer_setup_hook
, "temp-buffer-setup-hook");
2183 DEFVAR_LISP ("standard-output", Vstandard_output
,
2184 doc
: /* Output stream `print' uses by default for outputting a character.
2185 This may be any function of one argument.
2186 It may also be a buffer (output is inserted before point)
2187 or a marker (output is inserted and the marker is advanced)
2188 or the symbol t (output appears in the echo area). */);
2189 Vstandard_output
= Qt
;
2190 DEFSYM (Qstandard_output
, "standard-output");
2192 DEFVAR_LISP ("float-output-format", Vfloat_output_format
,
2193 doc
: /* The format descriptor string used to print floats.
2194 This is a %-spec like those accepted by `printf' in C,
2195 but with some restrictions. It must start with the two characters `%.'.
2196 After that comes an integer precision specification,
2197 and then a letter which controls the format.
2198 The letters allowed are `e', `f' and `g'.
2199 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"
2200 Use `f' for decimal point notation \"DIGITS.DIGITS\".
2201 Use `g' to choose the shorter of those two formats for the number at hand.
2202 The precision in any of these cases is the number of digits following
2203 the decimal point. With `f', a precision of 0 means to omit the
2204 decimal point. 0 is not allowed with `e' or `g'.
2206 A value of nil means to use the shortest notation
2207 that represents the number without losing information. */);
2208 Vfloat_output_format
= Qnil
;
2210 DEFVAR_LISP ("print-length", Vprint_length
,
2211 doc
: /* Maximum length of list to print before abbreviating.
2212 A value of nil means no limit. See also `eval-expression-print-length'. */);
2213 Vprint_length
= Qnil
;
2215 DEFVAR_LISP ("print-level", Vprint_level
,
2216 doc
: /* Maximum depth of list nesting to print before abbreviating.
2217 A value of nil means no limit. See also `eval-expression-print-level'. */);
2218 Vprint_level
= Qnil
;
2220 DEFVAR_BOOL ("print-escape-newlines", print_escape_newlines
,
2221 doc
: /* Non-nil means print newlines in strings as `\\n'.
2222 Also print formfeeds as `\\f'. */);
2223 print_escape_newlines
= 0;
2225 DEFVAR_BOOL ("print-escape-nonascii", print_escape_nonascii
,
2226 doc
: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO.
2227 \(OOO is the octal representation of the character code.)
2228 Only single-byte characters are affected, and only in `prin1'.
2229 When the output goes in a multibyte buffer, this feature is
2230 enabled regardless of the value of the variable. */);
2231 print_escape_nonascii
= 0;
2233 DEFVAR_BOOL ("print-escape-multibyte", print_escape_multibyte
,
2234 doc
: /* Non-nil means print multibyte characters in strings as \\xXXXX.
2235 \(XXXX is the hex representation of the character code.)
2236 This affects only `prin1'. */);
2237 print_escape_multibyte
= 0;
2239 DEFVAR_BOOL ("print-quoted", print_quoted
,
2240 doc
: /* Non-nil means print quoted forms with reader syntax.
2241 I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */);
2244 DEFVAR_LISP ("print-gensym", Vprint_gensym
,
2245 doc
: /* Non-nil means print uninterned symbols so they will read as uninterned.
2246 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.
2247 When the uninterned symbol appears within a recursive data structure,
2248 and the symbol appears more than once, in addition use the #N# and #N=
2249 constructs as needed, so that multiple references to the same symbol are
2250 shared once again when the text is read back. */);
2251 Vprint_gensym
= Qnil
;
2253 DEFVAR_LISP ("print-circle", Vprint_circle
,
2254 doc
: /* Non-nil means print recursive structures using #N= and #N# syntax.
2255 If nil, printing proceeds recursively and may lead to
2256 `max-lisp-eval-depth' being exceeded or an error may occur:
2257 \"Apparently circular structure being printed.\" Also see
2258 `print-length' and `print-level'.
2259 If non-nil, shared substructures anywhere in the structure are printed
2260 with `#N=' before the first occurrence (in the order of the print
2261 representation) and `#N#' in place of each subsequent occurrence,
2262 where N is a positive decimal integer. */);
2263 Vprint_circle
= Qnil
;
2265 DEFVAR_LISP ("print-continuous-numbering", Vprint_continuous_numbering
,
2266 doc
: /* Non-nil means number continuously across print calls.
2267 This affects the numbers printed for #N= labels and #M# references.
2268 See also `print-circle', `print-gensym', and `print-number-table'.
2269 This variable should not be set with `setq'; bind it with a `let' instead. */);
2270 Vprint_continuous_numbering
= Qnil
;
2272 DEFVAR_LISP ("print-number-table", Vprint_number_table
,
2273 doc
: /* A vector used internally to produce `#N=' labels and `#N#' references.
2274 The Lisp printer uses this vector to detect Lisp objects referenced more
2277 When you bind `print-continuous-numbering' to t, you should probably
2278 also bind `print-number-table' to nil. This ensures that the value of
2279 `print-number-table' can be garbage-collected once the printing is
2280 done. If all elements of `print-number-table' are nil, it means that
2281 the printing done so far has not found any shared structure or objects
2282 that need to be recorded in the table. */);
2283 Vprint_number_table
= Qnil
;
2285 DEFVAR_LISP ("print-charset-text-property", Vprint_charset_text_property
,
2286 doc
: /* A flag to control printing of `charset' text property on printing a string.
2287 The value must be nil, t, or `default'.
2289 If the value is nil, don't print the text property `charset'.
2291 If the value is t, always print the text property `charset'.
2293 If the value is `default', print the text property `charset' only when
2294 the value is different from what is guessed in the current charset
2296 Vprint_charset_text_property
= Qdefault
;
2298 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
2299 staticpro (&Vprin1_to_string_buffer
);
2302 defsubr (&Sprin1_to_string
);
2303 defsubr (&Serror_message_string
);
2307 defsubr (&Swrite_char
);
2308 defsubr (&Sredirect_debugging_output
);
2310 DEFSYM (Qprint_escape_newlines
, "print-escape-newlines");
2311 DEFSYM (Qprint_escape_multibyte
, "print-escape-multibyte");
2312 DEFSYM (Qprint_escape_nonascii
, "print-escape-nonascii");
2314 print_prune_charset_plist
= Qnil
;
2315 staticpro (&print_prune_charset_plist
);