Extend `file-notify-test02-rm-watch'
[emacs.git] / src / print.c
blobe857761bd4605999f223f4d4da1eb14783f91a0c
1 /* Lisp object printing and output streams.
3 Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2017 Free Software
4 Foundation, Inc.
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/>. */
22 #include <config.h>
23 #include "sysstdio.h"
25 #include "lisp.h"
26 #include "character.h"
27 #include "coding.h"
28 #include "buffer.h"
29 #include "charset.h"
30 #include "frame.h"
31 #include "process.h"
32 #include "disptab.h"
33 #include "intervals.h"
34 #include "blockinput.h"
35 #include "xwidget.h"
37 #include <c-ctype.h>
38 #include <float.h>
39 #include <ftoastr.h>
41 #ifdef WINDOWSNT
42 # include <sys/socket.h> /* for F_DUPFD_CLOEXEC */
43 #endif
45 struct terminal;
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; \
100 bool multibyte \
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); \
121 old_point = PT; \
122 old_point_byte = PT_BYTE; \
123 SET_PT_BOTH (marker_pos, \
124 marker_byte_position (printcharfun)); \
125 start_point = PT; \
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, \
141 print_buffer_pos, \
142 print_buffer_pos_byte); \
143 record_unwind_protect (print_unwind, string); \
145 else \
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)))\
164 USE_SAFE_ALLOCA; \
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); \
170 SAFE_FREE (); \
172 else \
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); \
180 print_buffer = 0; \
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. */
195 static void
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. */
203 static void
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))
214 encode_p = true;
216 if (CHAR_VALID_P (ch) && DISP_TABLE_P (Vstandard_display_table))
218 dv = DISP_CHAR_VECTOR (XCHAR_TABLE (Vstandard_display_table), ch);
219 if (VECTORP (dv))
221 n = ASIZE (dv);
222 goto next_char;
226 while (true)
228 if (ASCII_CHAR_P (ch))
230 putc (ch, stream);
231 #ifdef WINDOWSNT
232 /* Send the output to a debugger (nothing happens if there
233 isn't one). */
234 if (print_output_debug_flag && stream == stderr)
235 OutputDebugString ((char []) {ch, '\0'});
236 #endif
238 else
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);
245 if (encode_p)
246 encoded_ch = code_convert_string_norecord (encoded_ch,
247 coding_system, true);
248 fwrite (SSDATA (encoded_ch), 1, SBYTES (encoded_ch), stream);
249 #ifdef WINDOWSNT
250 if (print_output_debug_flag && stream == stderr)
251 OutputDebugString (SSDATA (encoded_ch));
252 #endif
255 i++;
257 next_char:
258 for (; i < n; i++)
259 if (CHARACTERP (AREF (dv, i)))
260 break;
261 if (! (i < n))
262 break;
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
270 argument. */
272 static void
273 printchar (unsigned int ch, Lisp_Object fun)
275 if (!NILP (fun) && !EQ (fun, Qt))
276 call1 (fun, make_number (ch));
277 else
279 unsigned char str[MAX_MULTIBYTE_LENGTH];
280 int len = CHAR_STRING (ch, str);
282 maybe_quit ();
284 if (NILP (fun))
286 ptrdiff_t incr = len - (print_buffer_size - print_buffer_pos_byte);
287 if (incr > 0)
288 print_buffer = xpalloc (print_buffer, &print_buffer_size,
289 incr, -1, 1);
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);
299 else
300 fwrite (str, 1, len, stdout);
301 noninteractive_need_newline = 1;
303 else
305 bool multibyte_p
306 = !NILP (BVAR (current_buffer, enable_multibyte_characters));
308 setup_echo_area_for_printing (multibyte_p);
309 insert_char (ch);
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. */
326 static void
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);
333 if (incr > 0)
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))
343 int len;
344 for (ptrdiff_t i = 0; i < size_byte; i += len)
346 int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i,
347 len);
348 printchar_to_stream (ch, stdout);
351 else
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
360 job. */
361 int i;
362 bool multibyte_p
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++);
373 else
375 int len;
376 for (i = 0; i < size_byte; i += len)
378 int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i,
379 len);
380 insert_char (ch);
384 else
386 /* PRINTCHARFUN is a Lisp function. */
387 ptrdiff_t i = 0;
389 if (size == size_byte)
391 while (i < size_byte)
393 int ch = ptr[i++];
394 printchar (ch, printcharfun);
397 else
399 while (i < size_byte)
401 /* Here, we must convert each multi-byte form to the
402 corresponding character code before handing it to
403 PRINTCHAR. */
404 int len;
405 int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i,
406 len);
407 printchar (ch, printcharfun);
408 i += len;
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. */
418 static void
419 print_string (Lisp_Object string, Lisp_Object printcharfun)
421 if (EQ (printcharfun, Qt) || NILP (printcharfun))
423 ptrdiff_t chars;
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
437 character codes. */
438 Lisp_Object newstr;
439 ptrdiff_t bytes;
441 chars = SBYTES (string);
442 bytes = count_size_as_multibyte (SDATA (string), chars);
443 if (chars < bytes)
445 newstr = make_uninit_multibyte_string (chars, bytes);
446 memcpy (SDATA (newstr), SDATA (string), chars);
447 str_to_multibyte (SDATA (newstr), bytes, chars);
448 string = newstr;
451 else
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. */
461 USE_SAFE_ALLOCA;
462 char *buffer = SAFE_ALLOCA (nbytes);
463 memcpy (buffer, SDATA (string), nbytes);
465 strout (buffer, chars, nbytes, printcharfun);
467 SAFE_FREE ();
469 else
470 /* No need to copy, since output to print_buffer can't GC. */
471 strout (SSDATA (string), chars, SBYTES (string), printcharfun);
473 else
475 /* Otherwise, string may be relocated by printing one char.
476 So re-fetch the string address for each character. */
477 ptrdiff_t i;
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);
483 else
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. */
488 int len;
489 int ch = STRING_CHAR_AND_LENGTH (SDATA (string) + i, len);
490 printchar (ch, printcharfun);
491 i += len;
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);
504 PRINTPREPARE;
505 printchar (XINT (character), printcharfun);
506 PRINTFINISH;
507 return character;
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. */
514 static void
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. */
524 static void
525 write_string (const char *data, Lisp_Object printcharfun)
527 PRINTPREPARE;
528 print_c_string (data, printcharfun);
529 PRINTFINISH;
533 void
534 temp_output_buffer_setup (const char *bufname)
536 ptrdiff_t count = SPECPDL_INDEX ();
537 register struct buffer *old = current_buffer;
538 register Lisp_Object buf;
540 record_unwind_current_buffer ();
542 Fset_buffer (Fget_buffer_create (build_string (bufname)));
544 Fkill_all_local_variables ();
545 delete_all_overlays (current_buffer);
546 bset_directory (current_buffer, BVAR (old, directory));
547 bset_read_only (current_buffer, Qnil);
548 bset_filename (current_buffer, Qnil);
549 bset_undo_list (current_buffer, Qt);
550 eassert (current_buffer->overlays_before == NULL);
551 eassert (current_buffer->overlays_after == NULL);
552 bset_enable_multibyte_characters
553 (current_buffer, BVAR (&buffer_defaults, enable_multibyte_characters));
554 specbind (Qinhibit_read_only, Qt);
555 specbind (Qinhibit_modification_hooks, Qt);
556 Ferase_buffer ();
557 XSETBUFFER (buf, current_buffer);
559 run_hook (Qtemp_buffer_setup_hook);
561 unbind_to (count, Qnil);
563 specbind (Qstandard_output, buf);
566 static void print (Lisp_Object, Lisp_Object, bool);
567 static void print_preprocess (Lisp_Object);
568 static void print_preprocess_string (INTERVAL, Lisp_Object);
569 static void print_object (Lisp_Object, Lisp_Object, bool);
571 DEFUN ("terpri", Fterpri, Sterpri, 0, 2, 0,
572 doc: /* Output a newline to stream PRINTCHARFUN.
573 If ENSURE is non-nil only output a newline if not already at the
574 beginning of a line. Value is non-nil if a newline is printed.
575 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used. */)
576 (Lisp_Object printcharfun, Lisp_Object ensure)
578 Lisp_Object val;
580 if (NILP (printcharfun))
581 printcharfun = Vstandard_output;
582 PRINTPREPARE;
584 if (NILP (ensure))
585 val = Qt;
586 /* Difficult to check if at line beginning so abort. */
587 else if (FUNCTIONP (printcharfun))
588 signal_error ("Unsupported function argument", printcharfun);
589 else if (noninteractive && !NILP (printcharfun))
590 val = printchar_stdout_last == 10 ? Qnil : Qt;
591 else
592 val = NILP (Fbolp ()) ? Qt : Qnil;
594 if (!NILP (val))
595 printchar ('\n', printcharfun);
596 PRINTFINISH;
597 return val;
600 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
601 doc: /* Output the printed representation of OBJECT, any Lisp object.
602 Quoting characters are printed when needed to make output that `read'
603 can handle, whenever this is possible. For complex objects, the behavior
604 is controlled by `print-level' and `print-length', which see.
606 OBJECT is any of the Lisp data types: a number, a string, a symbol,
607 a list, a buffer, a window, a frame, etc.
609 A printed representation of an object is text which describes that object.
611 Optional argument PRINTCHARFUN is the output stream, which can be one
612 of these:
614 - a buffer, in which case output is inserted into that buffer at point;
615 - a marker, in which case output is inserted at marker's position;
616 - a function, in which case that function is called once for each
617 character of OBJECT's printed representation;
618 - a symbol, in which case that symbol's function definition is called; or
619 - t, in which case the output is displayed in the echo area.
621 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
622 is used instead. */)
623 (Lisp_Object object, Lisp_Object printcharfun)
625 if (NILP (printcharfun))
626 printcharfun = Vstandard_output;
627 PRINTPREPARE;
628 print (object, printcharfun, 1);
629 PRINTFINISH;
630 return object;
633 /* A buffer which is used to hold output being built by prin1-to-string. */
634 Lisp_Object Vprin1_to_string_buffer;
636 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
637 doc: /* Return a string containing the printed representation of OBJECT.
638 OBJECT can be any Lisp object. This function outputs quoting characters
639 when necessary to make output that `read' can handle, whenever possible,
640 unless the optional second argument NOESCAPE is non-nil. For complex objects,
641 the behavior is controlled by `print-level' and `print-length', which see.
643 OBJECT is any of the Lisp data types: a number, a string, a symbol,
644 a list, a buffer, a window, a frame, etc.
646 A printed representation of an object is text which describes that object. */)
647 (Lisp_Object object, Lisp_Object noescape)
649 ptrdiff_t count = SPECPDL_INDEX ();
651 specbind (Qinhibit_modification_hooks, Qt);
653 /* Save and restore this: we are altering a buffer
654 but we don't want to deactivate the mark just for that.
655 No need for specbind, since errors deactivate the mark. */
656 Lisp_Object save_deactivate_mark = Vdeactivate_mark;
658 Lisp_Object printcharfun = Vprin1_to_string_buffer;
659 PRINTPREPARE;
660 print (object, printcharfun, NILP (noescape));
661 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINISH */
662 PRINTFINISH;
664 struct buffer *previous = current_buffer;
665 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
666 object = Fbuffer_string ();
667 if (SBYTES (object) == SCHARS (object))
668 STRING_SET_UNIBYTE (object);
670 /* Note that this won't make prepare_to_modify_buffer call
671 ask-user-about-supersession-threat because this buffer
672 does not visit a file. */
673 Ferase_buffer ();
674 set_buffer_internal (previous);
676 Vdeactivate_mark = save_deactivate_mark;
678 return unbind_to (count, object);
681 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
682 doc: /* Output the printed representation of OBJECT, any Lisp object.
683 No quoting characters are used; no delimiters are printed around
684 the contents of strings.
686 OBJECT is any of the Lisp data types: a number, a string, a symbol,
687 a list, a buffer, a window, a frame, etc.
689 A printed representation of an object is text which describes that object.
691 Optional argument PRINTCHARFUN is the output stream, which can be one
692 of these:
694 - a buffer, in which case output is inserted into that buffer at point;
695 - a marker, in which case output is inserted at marker's position;
696 - a function, in which case that function is called once for each
697 character of OBJECT's printed representation;
698 - a symbol, in which case that symbol's function definition is called; or
699 - t, in which case the output is displayed in the echo area.
701 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
702 is used instead. */)
703 (Lisp_Object object, Lisp_Object printcharfun)
705 if (NILP (printcharfun))
706 printcharfun = Vstandard_output;
707 PRINTPREPARE;
708 print (object, printcharfun, 0);
709 PRINTFINISH;
710 return object;
713 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
714 doc: /* Output the printed representation of OBJECT, with newlines around it.
715 Quoting characters are printed when needed to make output that `read'
716 can handle, whenever this is possible. For complex objects, the behavior
717 is controlled by `print-level' and `print-length', which see.
719 OBJECT is any of the Lisp data types: a number, a string, a symbol,
720 a list, a buffer, a window, a frame, etc.
722 A printed representation of an object is text which describes that object.
724 Optional argument PRINTCHARFUN is the output stream, which can be one
725 of these:
727 - a buffer, in which case output is inserted into that buffer at point;
728 - a marker, in which case output is inserted at marker's position;
729 - a function, in which case that function is called once for each
730 character of OBJECT's printed representation;
731 - a symbol, in which case that symbol's function definition is called; or
732 - t, in which case the output is displayed in the echo area.
734 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
735 is used instead. */)
736 (Lisp_Object object, Lisp_Object printcharfun)
738 if (NILP (printcharfun))
739 printcharfun = Vstandard_output;
740 PRINTPREPARE;
741 printchar ('\n', printcharfun);
742 print (object, printcharfun, 1);
743 printchar ('\n', printcharfun);
744 PRINTFINISH;
745 return object;
748 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
749 doc: /* Write CHARACTER to stderr.
750 You can call print while debugging emacs, and pass it this function
751 to make it write to the debugging output. */)
752 (Lisp_Object character)
754 CHECK_NUMBER (character);
755 printchar_to_stream (XINT (character), stderr);
756 return character;
759 /* This function is never called. Its purpose is to prevent
760 print_output_debug_flag from being optimized away. */
762 extern void debug_output_compilation_hack (bool) EXTERNALLY_VISIBLE;
763 void
764 debug_output_compilation_hack (bool x)
766 print_output_debug_flag = x;
769 DEFUN ("redirect-debugging-output", Fredirect_debugging_output, Sredirect_debugging_output,
770 1, 2,
771 "FDebug output file: \nP",
772 doc: /* Redirect debugging output (stderr stream) to file FILE.
773 If FILE is nil, reset target to the initial stderr stream.
774 Optional arg APPEND non-nil (interactively, with prefix arg) means
775 append to existing target file. */)
776 (Lisp_Object file, Lisp_Object append)
778 /* If equal to STDERR_FILENO, stderr has not been duplicated and is OK as-is.
779 Otherwise, this is a close-on-exec duplicate of the original stderr. */
780 static int stderr_dup = STDERR_FILENO;
781 int fd = stderr_dup;
783 if (! NILP (file))
785 file = Fexpand_file_name (file, Qnil);
787 if (stderr_dup == STDERR_FILENO)
789 int n = fcntl (STDERR_FILENO, F_DUPFD_CLOEXEC, STDERR_FILENO + 1);
790 if (n < 0)
791 report_file_error ("dup", file);
792 stderr_dup = n;
795 fd = emacs_open (SSDATA (ENCODE_FILE (file)),
796 (O_WRONLY | O_CREAT
797 | (! NILP (append) ? O_APPEND : O_TRUNC)),
798 0666);
799 if (fd < 0)
800 report_file_error ("Cannot open debugging output stream", file);
803 fflush (stderr);
804 if (dup2 (fd, STDERR_FILENO) < 0)
805 report_file_error ("dup2", file);
806 if (fd != stderr_dup)
807 emacs_close (fd);
808 return Qnil;
812 /* This is the interface for debugging printing. */
814 void
815 debug_print (Lisp_Object arg)
817 Fprin1 (arg, Qexternal_debugging_output);
818 fprintf (stderr, "\r\n");
821 void safe_debug_print (Lisp_Object) EXTERNALLY_VISIBLE;
822 void
823 safe_debug_print (Lisp_Object arg)
825 int valid = valid_lisp_object_p (arg);
827 if (valid > 0)
828 debug_print (arg);
829 else
831 EMACS_UINT n = XLI (arg);
832 fprintf (stderr, "#<%s_LISP_OBJECT 0x%08"pI"x>\r\n",
833 !valid ? "INVALID" : "SOME",
839 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
840 1, 1, 0,
841 doc: /* Convert an error value (ERROR-SYMBOL . DATA) to an error message.
842 See Info anchor `(elisp)Definition of signal' for some details on how this
843 error message is constructed. */)
844 (Lisp_Object obj)
846 struct buffer *old = current_buffer;
847 Lisp_Object value;
849 /* If OBJ is (error STRING), just return STRING.
850 That is not only faster, it also avoids the need to allocate
851 space here when the error is due to memory full. */
852 if (CONSP (obj) && EQ (XCAR (obj), Qerror)
853 && CONSP (XCDR (obj))
854 && STRINGP (XCAR (XCDR (obj)))
855 && NILP (XCDR (XCDR (obj))))
856 return XCAR (XCDR (obj));
858 print_error_message (obj, Vprin1_to_string_buffer, 0, Qnil);
860 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
861 value = Fbuffer_string ();
863 Ferase_buffer ();
864 set_buffer_internal (old);
866 return value;
869 /* Print an error message for the error DATA onto Lisp output stream
870 STREAM (suitable for the print functions).
871 CONTEXT is a C string describing the context of the error.
872 CALLER is the Lisp function inside which the error was signaled. */
874 void
875 print_error_message (Lisp_Object data, Lisp_Object stream, const char *context,
876 Lisp_Object caller)
878 Lisp_Object errname, errmsg, file_error, tail;
880 if (context != 0)
881 write_string (context, stream);
883 /* If we know from where the error was signaled, show it in
884 *Messages*. */
885 if (!NILP (caller) && SYMBOLP (caller))
887 Lisp_Object cname = SYMBOL_NAME (caller);
888 ptrdiff_t cnamelen = SBYTES (cname);
889 USE_SAFE_ALLOCA;
890 char *name = SAFE_ALLOCA (cnamelen);
891 memcpy (name, SDATA (cname), cnamelen);
892 message_dolog (name, cnamelen, 0, STRING_MULTIBYTE (cname));
893 message_dolog (": ", 2, 0, 0);
894 SAFE_FREE ();
897 errname = Fcar (data);
899 if (EQ (errname, Qerror))
901 data = Fcdr (data);
902 if (!CONSP (data))
903 data = Qnil;
904 errmsg = Fcar (data);
905 file_error = Qnil;
907 else
909 Lisp_Object error_conditions = Fget (errname, Qerror_conditions);
910 errmsg = Fsubstitute_command_keys (Fget (errname, Qerror_message));
911 file_error = Fmemq (Qfile_error, error_conditions);
914 /* Print an error message including the data items. */
916 tail = Fcdr_safe (data);
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);
924 const char *sep = ": ";
926 if (!STRINGP (errmsg))
927 write_string ("peculiar error", stream);
928 else if (SCHARS (errmsg))
929 Fprinc (errmsg, stream);
930 else
931 sep = NULL;
933 for (; CONSP (tail); tail = XCDR (tail), sep = ", ")
935 Lisp_Object obj;
937 if (sep)
938 write_string (sep, stream);
939 obj = XCAR (tail);
940 if (!NILP (file_error)
941 || EQ (errname, Qend_of_file) || EQ (errname, Quser_error))
942 Fprinc (obj, stream);
943 else
944 Fprin1 (obj, stream);
952 * The buffer should be at least as large as the max string size of the
953 * largest float, printed in the biggest notation. This is undoubtedly
954 * 20d float_output_format, with the negative of the C-constant "HUGE"
955 * from <math.h>.
957 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
959 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
960 * case of -1e307 in 20d float_output_format. What is one to do (short of
961 * re-writing _doprnt to be more sane)?
962 * -wsr
963 * Given the above, the buffer must be least FLOAT_TO_STRING_BUFSIZE bytes.
967 float_to_string (char *buf, double data)
969 char *cp;
970 int width;
971 int len;
973 /* Check for plus infinity in a way that won't lose
974 if there is no plus infinity. */
975 if (data == data / 2 && data > 1.0)
977 static char const infinity_string[] = "1.0e+INF";
978 strcpy (buf, infinity_string);
979 return sizeof infinity_string - 1;
981 /* Likewise for minus infinity. */
982 if (data == data / 2 && data < -1.0)
984 static char const minus_infinity_string[] = "-1.0e+INF";
985 strcpy (buf, minus_infinity_string);
986 return sizeof minus_infinity_string - 1;
988 /* Check for NaN in a way that won't fail if there are no NaNs. */
989 if (! (data * 0.0 >= 0.0))
991 /* Prepend "-" if the NaN's sign bit is negative.
992 The sign bit of a double is the bit that is 1 in -0.0. */
993 static char const NaN_string[] = "0.0e+NaN";
994 int i;
995 union { double d; char c[sizeof (double)]; } u_data, u_minus_zero;
996 bool negative = 0;
997 u_data.d = data;
998 u_minus_zero.d = - 0.0;
999 for (i = 0; i < sizeof (double); i++)
1000 if (u_data.c[i] & u_minus_zero.c[i])
1002 *buf = '-';
1003 negative = 1;
1004 break;
1007 strcpy (buf + negative, NaN_string);
1008 return negative + sizeof NaN_string - 1;
1011 if (NILP (Vfloat_output_format)
1012 || !STRINGP (Vfloat_output_format))
1013 lose:
1015 /* Generate the fewest number of digits that represent the
1016 floating point value without losing information. */
1017 len = dtoastr (buf, FLOAT_TO_STRING_BUFSIZE - 2, 0, 0, data);
1018 /* The decimal point must be printed, or the byte compiler can
1019 get confused (Bug#8033). */
1020 width = 1;
1022 else /* oink oink */
1024 /* Check that the spec we have is fully valid.
1025 This means not only valid for printf,
1026 but meant for floats, and reasonable. */
1027 cp = SSDATA (Vfloat_output_format);
1029 if (cp[0] != '%')
1030 goto lose;
1031 if (cp[1] != '.')
1032 goto lose;
1034 cp += 2;
1036 /* Check the width specification. */
1037 width = -1;
1038 if ('0' <= *cp && *cp <= '9')
1040 width = 0;
1043 width = (width * 10) + (*cp++ - '0');
1044 if (DBL_DIG < width)
1045 goto lose;
1047 while (*cp >= '0' && *cp <= '9');
1049 /* A precision of zero is valid only for %f. */
1050 if (width == 0 && *cp != 'f')
1051 goto lose;
1054 if (*cp != 'e' && *cp != 'f' && *cp != 'g')
1055 goto lose;
1057 if (cp[1] != 0)
1058 goto lose;
1060 len = sprintf (buf, SSDATA (Vfloat_output_format), data);
1063 /* Make sure there is a decimal point with digit after, or an
1064 exponent, so that the value is readable as a float. But don't do
1065 this with "%.0f"; it's valid for that not to produce a decimal
1066 point. Note that width can be 0 only for %.0f. */
1067 if (width != 0)
1069 for (cp = buf; *cp; cp++)
1070 if ((*cp < '0' || *cp > '9') && *cp != '-')
1071 break;
1073 if (*cp == '.' && cp[1] == 0)
1075 cp[1] = '0';
1076 cp[2] = 0;
1077 len++;
1079 else if (*cp == 0)
1081 *cp++ = '.';
1082 *cp++ = '0';
1083 *cp++ = 0;
1084 len += 2;
1088 return len;
1092 static void
1093 print (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag)
1095 new_backquote_output = 0;
1097 /* Reset print_number_index and Vprint_number_table only when
1098 the variable Vprint_continuous_numbering is nil. Otherwise,
1099 the values of these variables will be kept between several
1100 print functions. */
1101 if (NILP (Vprint_continuous_numbering)
1102 || NILP (Vprint_number_table))
1104 print_number_index = 0;
1105 Vprint_number_table = Qnil;
1108 /* Construct Vprint_number_table for print-gensym and print-circle. */
1109 if (!NILP (Vprint_gensym) || !NILP (Vprint_circle))
1111 /* Construct Vprint_number_table.
1112 This increments print_number_index for the objects added. */
1113 print_depth = 0;
1114 print_preprocess (obj);
1116 if (HASH_TABLE_P (Vprint_number_table))
1117 { /* Remove unnecessary objects, which appear only once in OBJ;
1118 that is, whose status is Qt. */
1119 struct Lisp_Hash_Table *h = XHASH_TABLE (Vprint_number_table);
1120 ptrdiff_t i;
1122 for (i = 0; i < HASH_TABLE_SIZE (h); ++i)
1123 if (!NILP (HASH_HASH (h, i))
1124 && EQ (HASH_VALUE (h, i), Qt))
1125 Fremhash (HASH_KEY (h, i), Vprint_number_table);
1129 print_depth = 0;
1130 print_object (obj, printcharfun, escapeflag);
1133 #define PRINT_CIRCLE_CANDIDATE_P(obj) \
1134 (STRINGP (obj) || CONSP (obj) \
1135 || (VECTORLIKEP (obj) \
1136 && (VECTORP (obj) || COMPILEDP (obj) \
1137 || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj) \
1138 || HASH_TABLE_P (obj) || FONTP (obj))) \
1139 || (! NILP (Vprint_gensym) \
1140 && SYMBOLP (obj) \
1141 && !SYMBOL_INTERNED_P (obj)))
1143 /* Construct Vprint_number_table according to the structure of OBJ.
1144 OBJ itself and all its elements will be added to Vprint_number_table
1145 recursively if it is a list, vector, compiled function, char-table,
1146 string (its text properties will be traced), or a symbol that has
1147 no obarray (this is for the print-gensym feature).
1148 The status fields of Vprint_number_table mean whether each object appears
1149 more than once in OBJ: Qnil at the first time, and Qt after that. */
1150 static void
1151 print_preprocess (Lisp_Object obj)
1153 int i;
1154 ptrdiff_t size;
1155 int loop_count = 0;
1156 Lisp_Object halftail;
1158 /* Avoid infinite recursion for circular nested structure
1159 in the case where Vprint_circle is nil. */
1160 if (NILP (Vprint_circle))
1162 /* Give up if we go so deep that print_object will get an error. */
1163 /* See similar code in print_object. */
1164 if (print_depth >= PRINT_CIRCLE)
1165 error ("Apparently circular structure being printed");
1167 for (i = 0; i < print_depth; i++)
1168 if (EQ (obj, being_printed[i]))
1169 return;
1170 being_printed[print_depth] = obj;
1173 print_depth++;
1174 halftail = obj;
1176 loop:
1177 if (PRINT_CIRCLE_CANDIDATE_P (obj))
1179 if (!HASH_TABLE_P (Vprint_number_table))
1180 Vprint_number_table = CALLN (Fmake_hash_table, QCtest, Qeq);
1182 /* In case print-circle is nil and print-gensym is t,
1183 add OBJ to Vprint_number_table only when OBJ is a symbol. */
1184 if (! NILP (Vprint_circle) || SYMBOLP (obj))
1186 Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil);
1187 if (!NILP (num)
1188 /* If Vprint_continuous_numbering is non-nil and OBJ is a gensym,
1189 always print the gensym with a number. This is a special for
1190 the lisp function byte-compile-output-docform. */
1191 || (!NILP (Vprint_continuous_numbering)
1192 && SYMBOLP (obj)
1193 && !SYMBOL_INTERNED_P (obj)))
1194 { /* OBJ appears more than once. Let's remember that. */
1195 if (!INTEGERP (num))
1197 print_number_index++;
1198 /* Negative number indicates it hasn't been printed yet. */
1199 Fputhash (obj, make_number (- print_number_index),
1200 Vprint_number_table);
1202 print_depth--;
1203 return;
1205 else
1206 /* OBJ is not yet recorded. Let's add to the table. */
1207 Fputhash (obj, Qt, Vprint_number_table);
1210 switch (XTYPE (obj))
1212 case Lisp_String:
1213 /* A string may have text properties, which can be circular. */
1214 traverse_intervals_noorder (string_intervals (obj),
1215 print_preprocess_string, Qnil);
1216 break;
1218 case Lisp_Cons:
1219 /* Use HALFTAIL and LOOP_COUNT to detect circular lists,
1220 just as in print_object. */
1221 if (loop_count && EQ (obj, halftail))
1222 break;
1223 print_preprocess (XCAR (obj));
1224 obj = XCDR (obj);
1225 loop_count++;
1226 if (!(loop_count & 1))
1227 halftail = XCDR (halftail);
1228 goto loop;
1230 case Lisp_Vectorlike:
1231 size = ASIZE (obj);
1232 if (size & PSEUDOVECTOR_FLAG)
1233 size &= PSEUDOVECTOR_SIZE_MASK;
1234 for (i = (SUB_CHAR_TABLE_P (obj)
1235 ? SUB_CHAR_TABLE_OFFSET : 0); i < size; i++)
1236 print_preprocess (AREF (obj, i));
1237 if (HASH_TABLE_P (obj))
1238 { /* For hash tables, the key_and_value slot is past
1239 `size' because it needs to be marked specially in case
1240 the table is weak. */
1241 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
1242 print_preprocess (h->key_and_value);
1244 break;
1246 default:
1247 break;
1250 print_depth--;
1253 DEFUN ("print--preprocess", Fprint_preprocess, Sprint_preprocess, 1, 1, 0,
1254 doc: /* Extract sharing info from OBJECT needed to print it.
1255 Fills `print-number-table'. */)
1256 (Lisp_Object object)
1258 print_number_index = 0;
1259 print_preprocess (object);
1260 return Qnil;
1263 static void
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;
1277 static void
1278 print_check_string_charset_prop (INTERVAL interval, Lisp_Object string)
1280 Lisp_Object val;
1282 if (NILP (interval->plist)
1283 || (print_check_string_result == (PRINT_STRING_NON_CHARSET_FOUND
1284 | PRINT_STRING_UNSAFE_CHARSET_FOUND)))
1285 return;
1286 for (val = interval->plist; CONSP (val) && ! EQ (XCAR (val), Qcharset);
1287 val = XCDR (XCDR (val)));
1288 if (! CONSP (val))
1290 print_check_string_result |= PRINT_STRING_NON_CHARSET_FOUND;
1291 return;
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))
1302 int i, c;
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;
1315 break;
1321 /* The value is (charset . nil). */
1322 static Lisp_Object print_prune_charset_plist;
1324 static Lisp_Object
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);
1341 else
1342 Fset_text_properties (make_number (0), make_number (SCHARS (string)),
1343 Qnil, string);
1345 return string;
1348 static void
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),
1353 40))];
1355 maybe_quit ();
1357 /* Detect circularities and truncate them. */
1358 if (NILP (Vprint_circle))
1360 /* Simple but incomplete way. */
1361 int i;
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);
1372 return;
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);
1380 if (INTEGERP (num))
1382 EMACS_INT n = XINT (num);
1383 if (n < 0)
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);
1391 else
1393 /* Just print #n# if OBJ has already been printed. */
1394 int len = sprintf (buf, "#%"pI"d#", n);
1395 strout (buf, len, len, printcharfun);
1396 return;
1401 print_depth++;
1403 switch (XTYPE (obj))
1405 case_Lisp_Int:
1407 int len = sprintf (buf, "%"pI"d", XINT (obj));
1408 strout (buf, len, len, printcharfun);
1410 break;
1412 case Lisp_Float:
1414 char pigbuf[FLOAT_TO_STRING_BUFSIZE];
1415 int len = float_to_string (pigbuf, XFLOAT_DATA (obj));
1416 strout (pigbuf, len, len, printcharfun);
1418 break;
1420 case Lisp_String:
1421 if (!escapeflag)
1422 print_string (obj, printcharfun);
1423 else
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. */
1445 int c;
1447 FETCH_STRING_CHAR_ADVANCE (c, obj, i, i_byte);
1449 maybe_quit ();
1451 if (multibyte
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. */
1460 char outbuf[5];
1461 int len = sprintf (outbuf, "\\%03o", c + 0u);
1462 strout (outbuf, len, len, printcharfun);
1463 need_nonhex = false;
1465 else if (multibyte
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);
1472 need_nonhex = true;
1474 else
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
1483 ? (c = 'n', true)
1484 : c == '\f' && print_escape_newlines
1485 ? (c = 'f', true)
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);
1502 break;
1504 case Lisp_Symbol:
1506 bool confusing;
1507 unsigned char *p = SDATA (SYMBOL_NAME (obj));
1508 unsigned char *end = p + SBYTES (SYMBOL_NAME (obj));
1509 int c;
1510 ptrdiff_t i, i_byte;
1511 ptrdiff_t size_byte;
1512 Lisp_Object name;
1514 name = SYMBOL_NAME (obj);
1516 if (p != end && (*p == '-' || *p == '+')) p++;
1517 if (p == end)
1518 confusing = 0;
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
1525 about them here. */
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'))
1532 p++;
1533 confusing = (end == p);
1535 else
1536 confusing = 0;
1538 size_byte = SBYTES (name);
1540 if (! NILP (Vprint_gensym)
1541 && !SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (obj))
1542 print_c_string ("#:", printcharfun);
1543 else if (size_byte == 0)
1545 print_c_string ("##", printcharfun);
1546 break;
1549 for (i = 0, i_byte = 0; i_byte < size_byte;)
1551 /* Here, we must convert each multi-byte form to the
1552 corresponding character code before handing it to PRINTCHAR. */
1553 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1554 maybe_quit ();
1556 if (escapeflag)
1558 if (c == '\"' || c == '\\' || c == '\''
1559 || c == ';' || c == '#' || c == '(' || c == ')'
1560 || c == ',' || c == '.' || c == '`'
1561 || c == '[' || c == ']' || c == '?' || c <= 040
1562 || confusing)
1564 printchar ('\\', printcharfun);
1565 confusing = false;
1568 printchar (c, printcharfun);
1571 break;
1573 case Lisp_Cons:
1574 /* If deeper than spec'd depth, print placeholder. */
1575 if (INTEGERP (Vprint_level)
1576 && print_depth > XINT (Vprint_level))
1577 print_c_string ("...", printcharfun);
1578 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1579 && EQ (XCAR (obj), Qquote))
1581 printchar ('\'', printcharfun);
1582 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1584 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1585 && EQ (XCAR (obj), Qfunction))
1587 print_c_string ("#'", printcharfun);
1588 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1590 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1591 && EQ (XCAR (obj), Qbackquote))
1593 printchar ('`', printcharfun);
1594 new_backquote_output++;
1595 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1596 new_backquote_output--;
1598 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1599 && new_backquote_output
1600 && (EQ (XCAR (obj), Qcomma)
1601 || EQ (XCAR (obj), Qcomma_at)
1602 || EQ (XCAR (obj), Qcomma_dot)))
1604 print_object (XCAR (obj), printcharfun, false);
1605 new_backquote_output--;
1606 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1607 new_backquote_output++;
1609 else
1611 printchar ('(', printcharfun);
1613 Lisp_Object halftail = obj;
1615 /* Negative values of print-length are invalid in CL.
1616 Treat them like nil, as CMUCL does. */
1617 printmax_t print_length = (NATNUMP (Vprint_length)
1618 ? XFASTINT (Vprint_length)
1619 : TYPE_MAXIMUM (printmax_t));
1621 printmax_t i = 0;
1622 while (CONSP (obj))
1624 /* Detect circular list. */
1625 if (NILP (Vprint_circle))
1627 /* Simple but incomplete way. */
1628 if (i != 0 && EQ (obj, halftail))
1630 int len = sprintf (buf, " . #%"pMd, i / 2);
1631 strout (buf, len, len, printcharfun);
1632 goto end_of_list;
1635 else
1637 /* With the print-circle feature. */
1638 if (i != 0)
1640 Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil);
1641 if (INTEGERP (num))
1643 print_c_string (" . ", printcharfun);
1644 print_object (obj, printcharfun, escapeflag);
1645 goto end_of_list;
1650 if (i)
1651 printchar (' ', printcharfun);
1653 if (print_length <= i)
1655 print_c_string ("...", printcharfun);
1656 goto end_of_list;
1659 i++;
1660 print_object (XCAR (obj), printcharfun, escapeflag);
1662 obj = XCDR (obj);
1663 if (!(i & 1))
1664 halftail = XCDR (halftail);
1667 /* OBJ non-nil here means it's the end of a dotted list. */
1668 if (!NILP (obj))
1670 print_c_string (" . ", printcharfun);
1671 print_object (obj, printcharfun, escapeflag);
1674 end_of_list:
1675 printchar (')', printcharfun);
1677 break;
1679 case Lisp_Vectorlike:
1680 switch (PSEUDOVECTOR_TYPE (XVECTOR (obj))) {
1681 case PVEC_PROCESS:
1683 if (escapeflag)
1685 print_c_string ("#<process ", printcharfun);
1686 print_string (XPROCESS (obj)->name, printcharfun);
1687 printchar ('>', printcharfun);
1689 else
1690 print_string (XPROCESS (obj)->name, printcharfun);
1692 break;
1694 case PVEC_BOOL_VECTOR:
1696 ptrdiff_t i;
1697 unsigned char c;
1698 EMACS_INT size = bool_vector_size (obj);
1699 ptrdiff_t size_in_chars = bool_vector_bytes (size);
1700 ptrdiff_t real_size_in_chars = size_in_chars;
1702 int len = sprintf (buf, "#&%"pI"d\"", size);
1703 strout (buf, len, len, printcharfun);
1705 /* Don't print more characters than the specified maximum.
1706 Negative values of print-length are invalid. Treat them
1707 like a print-length of nil. */
1708 if (NATNUMP (Vprint_length)
1709 && XFASTINT (Vprint_length) < size_in_chars)
1710 size_in_chars = XFASTINT (Vprint_length);
1712 for (i = 0; i < size_in_chars; i++)
1714 maybe_quit ();
1715 c = bool_vector_uchar_data (obj)[i];
1716 if (c == '\n' && print_escape_newlines)
1717 print_c_string ("\\n", printcharfun);
1718 else if (c == '\f' && print_escape_newlines)
1719 print_c_string ("\\f", printcharfun);
1720 else if (c > '\177')
1722 /* Use octal escapes to avoid encoding issues. */
1723 len = sprintf (buf, "\\%o", c);
1724 strout (buf, len, len, printcharfun);
1726 else
1728 if (c == '\"' || c == '\\')
1729 printchar ('\\', printcharfun);
1730 printchar (c, printcharfun);
1734 if (size_in_chars < real_size_in_chars)
1735 print_c_string (" ...", printcharfun);
1736 printchar ('\"', printcharfun);
1738 break;
1740 case PVEC_SUBR:
1742 print_c_string ("#<subr ", printcharfun);
1743 print_c_string (XSUBR (obj)->symbol_name, printcharfun);
1744 printchar ('>', printcharfun);
1746 break;
1748 case PVEC_XWIDGET: case PVEC_XWIDGET_VIEW:
1750 print_c_string ("#<xwidget ", printcharfun);
1751 printchar ('>', printcharfun);
1753 break;
1755 case PVEC_WINDOW:
1757 int len = sprintf (buf, "#<window %"pI"d",
1758 XWINDOW (obj)->sequence_number);
1759 strout (buf, len, len, printcharfun);
1760 if (BUFFERP (XWINDOW (obj)->contents))
1762 print_c_string (" on ", printcharfun);
1763 print_string (BVAR (XBUFFER (XWINDOW (obj)->contents), name),
1764 printcharfun);
1766 printchar ('>', printcharfun);
1768 break;
1770 case PVEC_TERMINAL:
1772 struct terminal *t = XTERMINAL (obj);
1773 int len = sprintf (buf, "#<terminal %d", t->id);
1774 strout (buf, len, len, printcharfun);
1775 if (t->name)
1777 print_c_string (" on ", printcharfun);
1778 print_c_string (t->name, printcharfun);
1780 printchar ('>', printcharfun);
1782 break;
1784 case PVEC_HASH_TABLE:
1786 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
1787 ptrdiff_t i;
1788 ptrdiff_t real_size, size;
1789 int len;
1790 /* Implement a readable output, e.g.:
1791 #s(hash-table size 2 test equal data (k1 v1 k2 v2)) */
1792 /* Always print the size. */
1793 len = sprintf (buf, "#s(hash-table size %"pD"d", ASIZE (h->next));
1794 strout (buf, len, len, printcharfun);
1796 if (!NILP (h->test.name))
1798 print_c_string (" test ", printcharfun);
1799 print_object (h->test.name, printcharfun, escapeflag);
1802 if (!NILP (h->weak))
1804 print_c_string (" weakness ", printcharfun);
1805 print_object (h->weak, printcharfun, escapeflag);
1808 print_c_string (" rehash-size ", printcharfun);
1809 print_object (Fhash_table_rehash_size (obj),
1810 printcharfun, escapeflag);
1812 print_c_string (" rehash-threshold ", printcharfun);
1813 print_object (Fhash_table_rehash_threshold (obj),
1814 printcharfun, escapeflag);
1816 if (h->pure)
1818 print_c_string (" purecopy ", printcharfun);
1819 print_object (h->pure ? Qt : Qnil, printcharfun, escapeflag);
1822 print_c_string (" data ", printcharfun);
1824 /* Print the data here as a plist. */
1825 real_size = HASH_TABLE_SIZE (h);
1826 size = real_size;
1828 /* Don't print more elements than the specified maximum. */
1829 if (NATNUMP (Vprint_length)
1830 && XFASTINT (Vprint_length) < size)
1831 size = XFASTINT (Vprint_length);
1833 printchar ('(', printcharfun);
1834 for (i = 0; i < size; i++)
1835 if (!NILP (HASH_HASH (h, i)))
1837 if (i) printchar (' ', printcharfun);
1838 print_object (HASH_KEY (h, i), printcharfun, escapeflag);
1839 printchar (' ', printcharfun);
1840 print_object (HASH_VALUE (h, i), printcharfun, escapeflag);
1843 if (size < real_size)
1844 print_c_string (" ...", printcharfun);
1846 print_c_string ("))", printcharfun);
1848 break;
1850 case PVEC_BUFFER:
1852 if (!BUFFER_LIVE_P (XBUFFER (obj)))
1853 print_c_string ("#<killed buffer>", printcharfun);
1854 else if (escapeflag)
1856 print_c_string ("#<buffer ", printcharfun);
1857 print_string (BVAR (XBUFFER (obj), name), printcharfun);
1858 printchar ('>', printcharfun);
1860 else
1861 print_string (BVAR (XBUFFER (obj), name), printcharfun);
1863 break;
1865 case PVEC_WINDOW_CONFIGURATION:
1866 print_c_string ("#<window-configuration>", printcharfun);
1867 break;
1869 case PVEC_FRAME: ;
1871 int len;
1872 void *ptr = XFRAME (obj);
1873 Lisp_Object frame_name = XFRAME (obj)->name;
1875 print_c_string ((FRAME_LIVE_P (XFRAME (obj))
1876 ? "#<frame "
1877 : "#<dead frame "),
1878 printcharfun);
1879 if (!STRINGP (frame_name))
1881 /* A frame could be too young and have no name yet;
1882 don't crash. */
1883 if (SYMBOLP (frame_name))
1884 frame_name = Fsymbol_name (frame_name);
1885 else /* can't happen: name should be either nil or string */
1886 frame_name = build_string ("*INVALID*FRAME*NAME*");
1888 print_string (frame_name, printcharfun);
1889 len = sprintf (buf, " %p>", ptr);
1890 strout (buf, len, len, printcharfun);
1892 break;
1894 case PVEC_FONT:
1896 int i;
1898 if (! FONT_OBJECT_P (obj))
1900 if (FONT_SPEC_P (obj))
1901 print_c_string ("#<font-spec", printcharfun);
1902 else
1903 print_c_string ("#<font-entity", printcharfun);
1904 for (i = 0; i < FONT_SPEC_MAX; i++)
1906 printchar (' ', printcharfun);
1907 if (i < FONT_WEIGHT_INDEX || i > FONT_WIDTH_INDEX)
1908 print_object (AREF (obj, i), printcharfun, escapeflag);
1909 else
1910 print_object (font_style_symbolic (obj, i, 0),
1911 printcharfun, escapeflag);
1914 else
1916 print_c_string ("#<font-object ", printcharfun);
1917 print_object (AREF (obj, FONT_NAME_INDEX), printcharfun,
1918 escapeflag);
1920 printchar ('>', printcharfun);
1922 break;
1924 case PVEC_THREAD:
1926 print_c_string ("#<thread ", printcharfun);
1927 if (STRINGP (XTHREAD (obj)->name))
1928 print_string (XTHREAD (obj)->name, printcharfun);
1929 else
1931 int len = sprintf (buf, "%p", XTHREAD (obj));
1932 strout (buf, len, len, printcharfun);
1934 printchar ('>', printcharfun);
1936 break;
1938 case PVEC_MUTEX:
1940 print_c_string ("#<mutex ", printcharfun);
1941 if (STRINGP (XMUTEX (obj)->name))
1942 print_string (XMUTEX (obj)->name, printcharfun);
1943 else
1945 int len = sprintf (buf, "%p", XMUTEX (obj));
1946 strout (buf, len, len, printcharfun);
1948 printchar ('>', printcharfun);
1950 break;
1952 case PVEC_CONDVAR:
1954 print_c_string ("#<condvar ", printcharfun);
1955 if (STRINGP (XCONDVAR (obj)->name))
1956 print_string (XCONDVAR (obj)->name, printcharfun);
1957 else
1959 int len = sprintf (buf, "%p", XCONDVAR (obj));
1960 strout (buf, len, len, printcharfun);
1962 printchar ('>', printcharfun);
1964 break;
1966 case PVEC_SUB_CHAR_TABLE:
1967 case PVEC_COMPILED:
1968 case PVEC_CHAR_TABLE:
1969 case PVEC_NORMAL_VECTOR: ;
1971 ptrdiff_t size = ASIZE (obj);
1972 if (COMPILEDP (obj))
1974 printchar ('#', printcharfun);
1975 size &= PSEUDOVECTOR_SIZE_MASK;
1977 if (CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj))
1979 /* We print a char-table as if it were a vector,
1980 lumping the parent and default slots in with the
1981 character slots. But we add #^ as a prefix. */
1983 /* Make each lowest sub_char_table start a new line.
1984 Otherwise we'll make a line extremely long, which
1985 results in slow redisplay. */
1986 if (SUB_CHAR_TABLE_P (obj)
1987 && XSUB_CHAR_TABLE (obj)->depth == 3)
1988 printchar ('\n', printcharfun);
1989 print_c_string ("#^", printcharfun);
1990 if (SUB_CHAR_TABLE_P (obj))
1991 printchar ('^', printcharfun);
1992 size &= PSEUDOVECTOR_SIZE_MASK;
1994 if (size & PSEUDOVECTOR_FLAG)
1995 goto badtype;
1997 printchar ('[', printcharfun);
1999 int i, idx = SUB_CHAR_TABLE_P (obj) ? SUB_CHAR_TABLE_OFFSET : 0;
2000 Lisp_Object tem;
2001 ptrdiff_t real_size = size;
2003 /* For a sub char-table, print heading non-Lisp data first. */
2004 if (SUB_CHAR_TABLE_P (obj))
2006 i = sprintf (buf, "%d %d", XSUB_CHAR_TABLE (obj)->depth,
2007 XSUB_CHAR_TABLE (obj)->min_char);
2008 strout (buf, i, i, printcharfun);
2011 /* Don't print more elements than the specified maximum. */
2012 if (NATNUMP (Vprint_length)
2013 && XFASTINT (Vprint_length) < size)
2014 size = XFASTINT (Vprint_length);
2016 for (i = idx; i < size; i++)
2018 if (i) printchar (' ', printcharfun);
2019 tem = AREF (obj, i);
2020 print_object (tem, printcharfun, escapeflag);
2022 if (size < real_size)
2023 print_c_string (" ...", printcharfun);
2025 printchar (']', printcharfun);
2027 break;
2029 case PVEC_OTHER:
2030 case PVEC_FREE:
2031 emacs_abort ();
2033 break;
2035 case Lisp_Misc:
2036 switch (XMISCTYPE (obj))
2038 case Lisp_Misc_Marker:
2039 print_c_string ("#<marker ", printcharfun);
2040 /* Do you think this is necessary? */
2041 if (XMARKER (obj)->insertion_type != 0)
2042 print_c_string ("(moves after insertion) ", printcharfun);
2043 if (! XMARKER (obj)->buffer)
2044 print_c_string ("in no buffer", printcharfun);
2045 else
2047 int len = sprintf (buf, "at %"pD"d in ", marker_position (obj));
2048 strout (buf, len, len, printcharfun);
2049 print_string (BVAR (XMARKER (obj)->buffer, name), printcharfun);
2051 printchar ('>', printcharfun);
2052 break;
2054 case Lisp_Misc_Overlay:
2055 print_c_string ("#<overlay ", printcharfun);
2056 if (! XMARKER (OVERLAY_START (obj))->buffer)
2057 print_c_string ("in no buffer", printcharfun);
2058 else
2060 int len = sprintf (buf, "from %"pD"d to %"pD"d in ",
2061 marker_position (OVERLAY_START (obj)),
2062 marker_position (OVERLAY_END (obj)));
2063 strout (buf, len, len, printcharfun);
2064 print_string (BVAR (XMARKER (OVERLAY_START (obj))->buffer, name),
2065 printcharfun);
2067 printchar ('>', printcharfun);
2068 break;
2070 #ifdef HAVE_MODULES
2071 case Lisp_Misc_User_Ptr:
2073 print_c_string ("#<user-ptr ", printcharfun);
2074 int i = sprintf (buf, "ptr=%p finalizer=%p",
2075 XUSER_PTR (obj)->p,
2076 XUSER_PTR (obj)->finalizer);
2077 strout (buf, i, i, printcharfun);
2078 printchar ('>', printcharfun);
2079 break;
2081 #endif
2083 case Lisp_Misc_Finalizer:
2084 print_c_string ("#<finalizer", printcharfun);
2085 if (NILP (XFINALIZER (obj)->function))
2086 print_c_string (" used", printcharfun);
2087 printchar ('>', printcharfun);
2088 break;
2090 /* Remaining cases shouldn't happen in normal usage, but let's
2091 print them anyway for the benefit of the debugger. */
2093 case Lisp_Misc_Free:
2094 print_c_string ("#<misc free cell>", printcharfun);
2095 break;
2097 case Lisp_Misc_Save_Value:
2099 int i;
2100 struct Lisp_Save_Value *v = XSAVE_VALUE (obj);
2102 print_c_string ("#<save-value ", printcharfun);
2104 if (v->save_type == SAVE_TYPE_MEMORY)
2106 ptrdiff_t amount = v->data[1].integer;
2108 /* valid_lisp_object_p is reliable, so try to print up
2109 to 8 saved objects. This code is rarely used, so
2110 it's OK that valid_lisp_object_p is slow. */
2112 int limit = min (amount, 8);
2113 Lisp_Object *area = v->data[0].pointer;
2115 i = sprintf (buf, "with %"pD"d objects", amount);
2116 strout (buf, i, i, printcharfun);
2118 for (i = 0; i < limit; i++)
2120 Lisp_Object maybe = area[i];
2121 int valid = valid_lisp_object_p (maybe);
2123 printchar (' ', printcharfun);
2124 if (0 < valid)
2125 print_object (maybe, printcharfun, escapeflag);
2126 else
2127 print_c_string (valid < 0 ? "<some>" : "<invalid>",
2128 printcharfun);
2130 if (i == limit && i < amount)
2131 print_c_string (" ...", printcharfun);
2133 else
2135 /* Print each slot according to its type. */
2136 int index;
2137 for (index = 0; index < SAVE_VALUE_SLOTS; index++)
2139 if (index)
2140 printchar (' ', printcharfun);
2142 switch (save_type (v, index))
2144 case SAVE_UNUSED:
2145 i = sprintf (buf, "<unused>");
2146 break;
2148 case SAVE_POINTER:
2149 i = sprintf (buf, "<pointer %p>",
2150 v->data[index].pointer);
2151 break;
2153 case SAVE_FUNCPOINTER:
2154 i = sprintf (buf, "<funcpointer %p>",
2155 ((void *) (intptr_t)
2156 v->data[index].funcpointer));
2157 break;
2159 case SAVE_INTEGER:
2160 i = sprintf (buf, "<integer %"pD"d>",
2161 v->data[index].integer);
2162 break;
2164 case SAVE_OBJECT:
2165 print_object (v->data[index].object, printcharfun,
2166 escapeflag);
2167 continue;
2169 default:
2170 emacs_abort ();
2173 strout (buf, i, i, printcharfun);
2176 printchar ('>', printcharfun);
2178 break;
2180 default:
2181 goto badtype;
2183 break;
2185 default:
2186 badtype:
2188 int len;
2189 /* We're in trouble if this happens!
2190 Probably should just emacs_abort (). */
2191 print_c_string ("#<EMACS BUG: INVALID DATATYPE ", printcharfun);
2192 if (MISCP (obj))
2193 len = sprintf (buf, "(MISC 0x%04x)", (unsigned) XMISCTYPE (obj));
2194 else if (VECTORLIKEP (obj))
2195 len = sprintf (buf, "(PVEC 0x%08zx)", (size_t) ASIZE (obj));
2196 else
2197 len = sprintf (buf, "(0x%02x)", (unsigned) XTYPE (obj));
2198 strout (buf, len, len, printcharfun);
2199 print_c_string ((" Save your buffers immediately"
2200 " and please report this bug>"),
2201 printcharfun);
2205 print_depth--;
2209 /* Print a description of INTERVAL using PRINTCHARFUN.
2210 This is part of printing a string that has text properties. */
2212 static void
2213 print_interval (INTERVAL interval, Lisp_Object printcharfun)
2215 if (NILP (interval->plist))
2216 return;
2217 printchar (' ', printcharfun);
2218 print_object (make_number (interval->position), printcharfun, 1);
2219 printchar (' ', printcharfun);
2220 print_object (make_number (interval->position + LENGTH (interval)),
2221 printcharfun, 1);
2222 printchar (' ', printcharfun);
2223 print_object (interval->plist, printcharfun, 1);
2226 /* Initialize debug_print stuff early to have it working from the very
2227 beginning. */
2229 void
2230 init_print_once (void)
2232 /* The subroutine object for external-debugging-output is kept here
2233 for the convenience of the debugger. */
2234 DEFSYM (Qexternal_debugging_output, "external-debugging-output");
2236 defsubr (&Sexternal_debugging_output);
2239 void
2240 syms_of_print (void)
2242 DEFSYM (Qtemp_buffer_setup_hook, "temp-buffer-setup-hook");
2244 DEFVAR_LISP ("standard-output", Vstandard_output,
2245 doc: /* Output stream `print' uses by default for outputting a character.
2246 This may be any function of one argument.
2247 It may also be a buffer (output is inserted before point)
2248 or a marker (output is inserted and the marker is advanced)
2249 or the symbol t (output appears in the echo area). */);
2250 Vstandard_output = Qt;
2251 DEFSYM (Qstandard_output, "standard-output");
2253 DEFVAR_LISP ("float-output-format", Vfloat_output_format,
2254 doc: /* The format descriptor string used to print floats.
2255 This is a %-spec like those accepted by `printf' in C,
2256 but with some restrictions. It must start with the two characters `%.'.
2257 After that comes an integer precision specification,
2258 and then a letter which controls the format.
2259 The letters allowed are `e', `f' and `g'.
2260 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"
2261 Use `f' for decimal point notation \"DIGITS.DIGITS\".
2262 Use `g' to choose the shorter of those two formats for the number at hand.
2263 The precision in any of these cases is the number of digits following
2264 the decimal point. With `f', a precision of 0 means to omit the
2265 decimal point. 0 is not allowed with `e' or `g'.
2267 A value of nil means to use the shortest notation
2268 that represents the number without losing information. */);
2269 Vfloat_output_format = Qnil;
2271 DEFVAR_LISP ("print-length", Vprint_length,
2272 doc: /* Maximum length of list to print before abbreviating.
2273 A value of nil means no limit. See also `eval-expression-print-length'. */);
2274 Vprint_length = Qnil;
2276 DEFVAR_LISP ("print-level", Vprint_level,
2277 doc: /* Maximum depth of list nesting to print before abbreviating.
2278 A value of nil means no limit. See also `eval-expression-print-level'. */);
2279 Vprint_level = Qnil;
2281 DEFVAR_BOOL ("print-escape-newlines", print_escape_newlines,
2282 doc: /* Non-nil means print newlines in strings as `\\n'.
2283 Also print formfeeds as `\\f'. */);
2284 print_escape_newlines = 0;
2286 DEFVAR_BOOL ("print-escape-nonascii", print_escape_nonascii,
2287 doc: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO.
2288 \(OOO is the octal representation of the character code.)
2289 Only single-byte characters are affected, and only in `prin1'.
2290 When the output goes in a multibyte buffer, this feature is
2291 enabled regardless of the value of the variable. */);
2292 print_escape_nonascii = 0;
2294 DEFVAR_BOOL ("print-escape-multibyte", print_escape_multibyte,
2295 doc: /* Non-nil means print multibyte characters in strings as \\xXXXX.
2296 \(XXXX is the hex representation of the character code.)
2297 This affects only `prin1'. */);
2298 print_escape_multibyte = 0;
2300 DEFVAR_BOOL ("print-quoted", print_quoted,
2301 doc: /* Non-nil means print quoted forms with reader syntax.
2302 I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */);
2303 print_quoted = 0;
2305 DEFVAR_LISP ("print-gensym", Vprint_gensym,
2306 doc: /* Non-nil means print uninterned symbols so they will read as uninterned.
2307 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.
2308 When the uninterned symbol appears within a recursive data structure,
2309 and the symbol appears more than once, in addition use the #N# and #N=
2310 constructs as needed, so that multiple references to the same symbol are
2311 shared once again when the text is read back. */);
2312 Vprint_gensym = Qnil;
2314 DEFVAR_LISP ("print-circle", Vprint_circle,
2315 doc: /* Non-nil means print recursive structures using #N= and #N# syntax.
2316 If nil, printing proceeds recursively and may lead to
2317 `max-lisp-eval-depth' being exceeded or an error may occur:
2318 \"Apparently circular structure being printed.\" Also see
2319 `print-length' and `print-level'.
2320 If non-nil, shared substructures anywhere in the structure are printed
2321 with `#N=' before the first occurrence (in the order of the print
2322 representation) and `#N#' in place of each subsequent occurrence,
2323 where N is a positive decimal integer. */);
2324 Vprint_circle = Qnil;
2326 DEFVAR_LISP ("print-continuous-numbering", Vprint_continuous_numbering,
2327 doc: /* Non-nil means number continuously across print calls.
2328 This affects the numbers printed for #N= labels and #M# references.
2329 See also `print-circle', `print-gensym', and `print-number-table'.
2330 This variable should not be set with `setq'; bind it with a `let' instead. */);
2331 Vprint_continuous_numbering = Qnil;
2333 DEFVAR_LISP ("print-number-table", Vprint_number_table,
2334 doc: /* A vector used internally to produce `#N=' labels and `#N#' references.
2335 The Lisp printer uses this vector to detect Lisp objects referenced more
2336 than once.
2338 When you bind `print-continuous-numbering' to t, you should probably
2339 also bind `print-number-table' to nil. This ensures that the value of
2340 `print-number-table' can be garbage-collected once the printing is
2341 done. If all elements of `print-number-table' are nil, it means that
2342 the printing done so far has not found any shared structure or objects
2343 that need to be recorded in the table. */);
2344 Vprint_number_table = Qnil;
2346 DEFVAR_LISP ("print-charset-text-property", Vprint_charset_text_property,
2347 doc: /* A flag to control printing of `charset' text property on printing a string.
2348 The value must be nil, t, or `default'.
2350 If the value is nil, don't print the text property `charset'.
2352 If the value is t, always print the text property `charset'.
2354 If the value is `default', print the text property `charset' only when
2355 the value is different from what is guessed in the current charset
2356 priorities. */);
2357 Vprint_charset_text_property = Qdefault;
2359 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
2360 staticpro (&Vprin1_to_string_buffer);
2362 defsubr (&Sprin1);
2363 defsubr (&Sprin1_to_string);
2364 defsubr (&Serror_message_string);
2365 defsubr (&Sprinc);
2366 defsubr (&Sprint);
2367 defsubr (&Sterpri);
2368 defsubr (&Swrite_char);
2369 defsubr (&Sredirect_debugging_output);
2370 defsubr (&Sprint_preprocess);
2372 DEFSYM (Qprint_escape_newlines, "print-escape-newlines");
2373 DEFSYM (Qprint_escape_multibyte, "print-escape-multibyte");
2374 DEFSYM (Qprint_escape_nonascii, "print-escape-nonascii");
2376 print_prune_charset_plist = Qnil;
2377 staticpro (&print_prune_charset_plist);