1 /* Lisp object printing and output streams.
3 Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2011
4 Free Software 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
11 (at 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/>. */
27 #include "character.h"
33 #include "dispextern.h"
35 #include "intervals.h"
36 #include "blockinput.h"
37 #include "termhooks.h" /* For struct terminal. */
40 Lisp_Object Qstandard_output
;
42 static Lisp_Object Qtemp_buffer_setup_hook
;
44 /* These are used to print like we read. */
46 static Lisp_Object Qfloat_output_format
;
55 /* Default to values appropriate for IEEE floating point. */
60 /* Avoid actual stack overflow in print. */
61 static int print_depth
;
63 /* Level of nesting inside outputting backquote in new style. */
64 static int new_backquote_output
;
66 /* Detect most circularities to print finite output. */
67 #define PRINT_CIRCLE 200
68 static Lisp_Object being_printed
[PRINT_CIRCLE
];
70 /* When printing into a buffer, first we put the text in this
71 block, then insert it all at once. */
72 static char *print_buffer
;
74 /* Size allocated in print_buffer. */
75 static EMACS_INT print_buffer_size
;
76 /* Chars stored in print_buffer. */
77 static EMACS_INT print_buffer_pos
;
78 /* Bytes stored in print_buffer. */
79 static EMACS_INT print_buffer_pos_byte
;
81 Lisp_Object Qprint_escape_newlines
;
82 static Lisp_Object Qprint_escape_multibyte
, Qprint_escape_nonascii
;
84 /* Vprint_number_table is a table, that keeps objects that are going to
85 be printed, to allow use of #n= and #n# to express sharing.
86 For any given object, the table can give the following values:
87 t the object will be printed only once.
88 -N the object will be printed several times and will take number N.
89 N the object has been printed so we can refer to it as #N#.
90 print_number_index holds the largest N already used.
91 N has to be striclty larger than 0 since we need to distinguish -N. */
92 static int print_number_index
;
93 static void print_interval (INTERVAL interval
, Lisp_Object printcharfun
);
95 /* GDB resets this to zero on W32 to disable OutputDebugString calls. */
96 int print_output_debug_flag EXTERNALLY_VISIBLE
= 1;
99 /* Low level output routines for characters and strings */
101 /* Lisp functions to do output using a stream
102 must have the stream in a variable called printcharfun
103 and must start with PRINTPREPARE, end with PRINTFINISH,
104 and use PRINTDECLARE to declare common variables.
105 Use PRINTCHAR to output one character,
106 or call strout to output a block of characters. */
108 #define PRINTDECLARE \
109 struct buffer *old = current_buffer; \
110 EMACS_INT old_point = -1, start_point = -1; \
111 EMACS_INT old_point_byte = -1, start_point_byte = -1; \
112 int specpdl_count = SPECPDL_INDEX (); \
113 int free_print_buffer = 0; \
114 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters)); \
117 #define PRINTPREPARE \
118 original = printcharfun; \
119 if (NILP (printcharfun)) printcharfun = Qt; \
120 if (BUFFERP (printcharfun)) \
122 if (XBUFFER (printcharfun) != current_buffer) \
123 Fset_buffer (printcharfun); \
124 printcharfun = Qnil; \
126 if (MARKERP (printcharfun)) \
128 EMACS_INT marker_pos; \
129 if (! XMARKER (printcharfun)->buffer) \
130 error ("Marker does not point anywhere"); \
131 if (XMARKER (printcharfun)->buffer != current_buffer) \
132 set_buffer_internal (XMARKER (printcharfun)->buffer); \
133 marker_pos = marker_position (printcharfun); \
134 if (marker_pos < BEGV || marker_pos > ZV) \
135 error ("Marker is outside the accessible part of the buffer"); \
137 old_point_byte = PT_BYTE; \
138 SET_PT_BOTH (marker_pos, \
139 marker_byte_position (printcharfun)); \
141 start_point_byte = PT_BYTE; \
142 printcharfun = Qnil; \
144 if (NILP (printcharfun)) \
146 Lisp_Object string; \
147 if (NILP (BVAR (current_buffer, enable_multibyte_characters)) \
148 && ! print_escape_multibyte) \
149 specbind (Qprint_escape_multibyte, Qt); \
150 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)) \
151 && ! print_escape_nonascii) \
152 specbind (Qprint_escape_nonascii, Qt); \
153 if (print_buffer != 0) \
155 string = make_string_from_bytes (print_buffer, \
157 print_buffer_pos_byte); \
158 record_unwind_protect (print_unwind, string); \
162 print_buffer_size = 1000; \
163 print_buffer = (char *) xmalloc (print_buffer_size); \
164 free_print_buffer = 1; \
166 print_buffer_pos = 0; \
167 print_buffer_pos_byte = 0; \
169 if (EQ (printcharfun, Qt) && ! noninteractive) \
170 setup_echo_area_for_printing (multibyte);
172 #define PRINTFINISH \
173 if (NILP (printcharfun)) \
175 if (print_buffer_pos != print_buffer_pos_byte \
176 && NILP (BVAR (current_buffer, enable_multibyte_characters))) \
178 unsigned char *temp \
179 = (unsigned char *) alloca (print_buffer_pos + 1); \
180 copy_text ((unsigned char *) print_buffer, temp, \
181 print_buffer_pos_byte, 1, 0); \
182 insert_1_both ((char *) temp, print_buffer_pos, \
183 print_buffer_pos, 0, 1, 0); \
186 insert_1_both (print_buffer, print_buffer_pos, \
187 print_buffer_pos_byte, 0, 1, 0); \
188 signal_after_change (PT - print_buffer_pos, 0, print_buffer_pos);\
190 if (free_print_buffer) \
192 xfree (print_buffer); \
195 unbind_to (specpdl_count, Qnil); \
196 if (MARKERP (original)) \
197 set_marker_both (original, Qnil, PT, PT_BYTE); \
198 if (old_point >= 0) \
199 SET_PT_BOTH (old_point + (old_point >= start_point \
200 ? PT - start_point : 0), \
201 old_point_byte + (old_point_byte >= start_point_byte \
202 ? PT_BYTE - start_point_byte : 0)); \
203 if (old != current_buffer) \
204 set_buffer_internal (old);
206 #define PRINTCHAR(ch) printchar (ch, printcharfun)
208 /* This is used to restore the saved contents of print_buffer
209 when there is a recursive call to print. */
212 print_unwind (Lisp_Object saved_text
)
214 memcpy (print_buffer
, SDATA (saved_text
), SCHARS (saved_text
));
219 /* Print character CH using method FUN. FUN nil means print to
220 print_buffer. FUN t means print to echo area or stdout if
221 non-interactive. If FUN is neither nil nor t, call FUN with CH as
225 printchar (unsigned int ch
, Lisp_Object fun
)
227 if (!NILP (fun
) && !EQ (fun
, Qt
))
228 call1 (fun
, make_number (ch
));
231 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
232 int len
= CHAR_STRING (ch
, str
);
238 if (print_buffer_pos_byte
+ len
>= print_buffer_size
)
239 print_buffer
= (char *) xrealloc (print_buffer
,
240 print_buffer_size
*= 2);
241 memcpy (print_buffer
+ print_buffer_pos_byte
, str
, len
);
242 print_buffer_pos
+= 1;
243 print_buffer_pos_byte
+= len
;
245 else if (noninteractive
)
247 fwrite (str
, 1, len
, stdout
);
248 noninteractive_need_newline
= 1;
253 = !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
255 setup_echo_area_for_printing (multibyte_p
);
257 message_dolog ((char *) str
, len
, 0, multibyte_p
);
263 /* Output SIZE characters, SIZE_BYTE bytes from string PTR using
264 method PRINTCHARFUN. If SIZE < 0, use the string length of PTR for
265 both SIZE and SIZE_BYTE. PRINTCHARFUN nil means output to
266 print_buffer. PRINTCHARFUN t means output to the echo area or to
267 stdout if non-interactive. If neither nil nor t, call Lisp
268 function PRINTCHARFUN for each character printed. MULTIBYTE
269 non-zero means PTR contains multibyte characters.
271 In the case where PRINTCHARFUN is nil, it is safe for PTR to point
272 to data in a Lisp string. Otherwise that is not safe. */
275 strout (const char *ptr
, EMACS_INT size
, EMACS_INT size_byte
,
276 Lisp_Object printcharfun
)
279 size_byte
= size
= strlen (ptr
);
281 if (NILP (printcharfun
))
283 if (print_buffer_pos_byte
+ size_byte
> print_buffer_size
)
285 print_buffer_size
= print_buffer_size
* 2 + size_byte
;
286 print_buffer
= (char *) xrealloc (print_buffer
,
289 memcpy (print_buffer
+ print_buffer_pos_byte
, ptr
, size_byte
);
290 print_buffer_pos
+= size
;
291 print_buffer_pos_byte
+= size_byte
;
293 else if (noninteractive
&& EQ (printcharfun
, Qt
))
295 fwrite (ptr
, 1, size_byte
, stdout
);
296 noninteractive_need_newline
= 1;
298 else if (EQ (printcharfun
, Qt
))
300 /* Output to echo area. We're trying to avoid a little overhead
301 here, that's the reason we don't call printchar to do the
305 = !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
307 setup_echo_area_for_printing (multibyte_p
);
308 message_dolog (ptr
, size_byte
, 0, multibyte_p
);
310 if (size
== size_byte
)
312 for (i
= 0; i
< size
; ++i
)
313 insert_char ((unsigned char) *ptr
++);
318 for (i
= 0; i
< size_byte
; i
+= len
)
320 int ch
= STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr
+ i
,
328 /* PRINTCHARFUN is a Lisp function. */
331 if (size
== size_byte
)
333 while (i
< size_byte
)
341 while (i
< size_byte
)
343 /* Here, we must convert each multi-byte form to the
344 corresponding character code before handing it to
347 int ch
= STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr
+ i
,
356 /* Print the contents of a string STRING using PRINTCHARFUN.
357 It isn't safe to use strout in many cases,
358 because printing one char can relocate. */
361 print_string (Lisp_Object string
, Lisp_Object printcharfun
)
363 if (EQ (printcharfun
, Qt
) || NILP (printcharfun
))
367 if (print_escape_nonascii
)
368 string
= string_escape_byte8 (string
);
370 if (STRING_MULTIBYTE (string
))
371 chars
= SCHARS (string
);
372 else if (! print_escape_nonascii
373 && (EQ (printcharfun
, Qt
)
374 ? ! NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))
375 : ! NILP (BVAR (current_buffer
, enable_multibyte_characters
))))
377 /* If unibyte string STRING contains 8-bit codes, we must
378 convert STRING to a multibyte string containing the same
383 chars
= SBYTES (string
);
384 bytes
= count_size_as_multibyte (SDATA (string
), chars
);
387 newstr
= make_uninit_multibyte_string (chars
, bytes
);
388 memcpy (SDATA (newstr
), SDATA (string
), chars
);
389 str_to_multibyte (SDATA (newstr
), bytes
, chars
);
394 chars
= SBYTES (string
);
396 if (EQ (printcharfun
, Qt
))
398 /* Output to echo area. */
399 EMACS_INT nbytes
= SBYTES (string
);
402 /* Copy the string contents so that relocation of STRING by
403 GC does not cause trouble. */
406 SAFE_ALLOCA (buffer
, char *, nbytes
);
407 memcpy (buffer
, SDATA (string
), nbytes
);
409 strout (buffer
, chars
, SBYTES (string
), printcharfun
);
414 /* No need to copy, since output to print_buffer can't GC. */
415 strout (SSDATA (string
), chars
, SBYTES (string
), printcharfun
);
419 /* Otherwise, string may be relocated by printing one char.
420 So re-fetch the string address for each character. */
422 EMACS_INT size
= SCHARS (string
);
423 EMACS_INT size_byte
= SBYTES (string
);
426 if (size
== size_byte
)
427 for (i
= 0; i
< size
; i
++)
428 PRINTCHAR (SREF (string
, i
));
430 for (i
= 0; i
< size_byte
; )
432 /* Here, we must convert each multi-byte form to the
433 corresponding character code before handing it to PRINTCHAR. */
435 int ch
= STRING_CHAR_AND_LENGTH (SDATA (string
) + i
, len
);
443 DEFUN ("write-char", Fwrite_char
, Swrite_char
, 1, 2, 0,
444 doc
: /* Output character CHARACTER to stream PRINTCHARFUN.
445 PRINTCHARFUN defaults to the value of `standard-output' (which see). */)
446 (Lisp_Object character
, Lisp_Object printcharfun
)
450 if (NILP (printcharfun
))
451 printcharfun
= Vstandard_output
;
452 CHECK_NUMBER (character
);
454 PRINTCHAR (XINT (character
));
459 /* Used from outside of print.c to print a block of SIZE
460 single-byte chars at DATA on the default output stream.
461 Do not use this on the contents of a Lisp string. */
464 write_string (const char *data
, int size
)
467 Lisp_Object printcharfun
;
469 printcharfun
= Vstandard_output
;
472 strout (data
, size
, size
, printcharfun
);
476 /* Used to print a block of SIZE single-byte chars at DATA on a
477 specified stream PRINTCHARFUN.
478 Do not use this on the contents of a Lisp string. */
481 write_string_1 (const char *data
, int size
, Lisp_Object printcharfun
)
486 strout (data
, size
, size
, printcharfun
);
492 temp_output_buffer_setup (const char *bufname
)
494 int count
= SPECPDL_INDEX ();
495 register struct buffer
*old
= current_buffer
;
496 register Lisp_Object buf
;
498 record_unwind_protect (set_buffer_if_live
, Fcurrent_buffer ());
500 Fset_buffer (Fget_buffer_create (build_string (bufname
)));
502 Fkill_all_local_variables ();
503 delete_all_overlays (current_buffer
);
504 BVAR (current_buffer
, directory
) = BVAR (old
, directory
);
505 BVAR (current_buffer
, read_only
) = Qnil
;
506 BVAR (current_buffer
, filename
) = Qnil
;
507 BVAR (current_buffer
, undo_list
) = Qt
;
508 eassert (current_buffer
->overlays_before
== NULL
);
509 eassert (current_buffer
->overlays_after
== NULL
);
510 BVAR (current_buffer
, enable_multibyte_characters
)
511 = BVAR (&buffer_defaults
, enable_multibyte_characters
);
512 specbind (Qinhibit_read_only
, Qt
);
513 specbind (Qinhibit_modification_hooks
, Qt
);
515 XSETBUFFER (buf
, current_buffer
);
517 Frun_hooks (1, &Qtemp_buffer_setup_hook
);
519 unbind_to (count
, Qnil
);
521 specbind (Qstandard_output
, buf
);
524 static void print (Lisp_Object obj
, register Lisp_Object printcharfun
, int escapeflag
);
525 static void print_preprocess (Lisp_Object obj
);
526 static void print_preprocess_string (INTERVAL interval
, Lisp_Object arg
);
527 static void print_object (Lisp_Object obj
, register Lisp_Object printcharfun
, int escapeflag
);
529 DEFUN ("terpri", Fterpri
, Sterpri
, 0, 1, 0,
530 doc
: /* Output a newline to stream PRINTCHARFUN.
531 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used. */)
532 (Lisp_Object printcharfun
)
536 if (NILP (printcharfun
))
537 printcharfun
= Vstandard_output
;
544 DEFUN ("prin1", Fprin1
, Sprin1
, 1, 2, 0,
545 doc
: /* Output the printed representation of OBJECT, any Lisp object.
546 Quoting characters are printed when needed to make output that `read'
547 can handle, whenever this is possible. For complex objects, the behavior
548 is controlled by `print-level' and `print-length', which see.
550 OBJECT is any of the Lisp data types: a number, a string, a symbol,
551 a list, a buffer, a window, a frame, etc.
553 A printed representation of an object is text which describes that object.
555 Optional argument PRINTCHARFUN is the output stream, which can be one
558 - a buffer, in which case output is inserted into that buffer at point;
559 - a marker, in which case output is inserted at marker's position;
560 - a function, in which case that function is called once for each
561 character of OBJECT's printed representation;
562 - a symbol, in which case that symbol's function definition is called; or
563 - t, in which case the output is displayed in the echo area.
565 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
567 (Lisp_Object object
, Lisp_Object printcharfun
)
571 if (NILP (printcharfun
))
572 printcharfun
= Vstandard_output
;
574 print (object
, printcharfun
, 1);
579 /* a buffer which is used to hold output being built by prin1-to-string */
580 Lisp_Object Vprin1_to_string_buffer
;
582 DEFUN ("prin1-to-string", Fprin1_to_string
, Sprin1_to_string
, 1, 2, 0,
583 doc
: /* Return a string containing the printed representation of OBJECT.
584 OBJECT can be any Lisp object. This function outputs quoting characters
585 when necessary to make output that `read' can handle, whenever possible,
586 unless the optional second argument NOESCAPE is non-nil. For complex objects,
587 the behavior is controlled by `print-level' and `print-length', which see.
589 OBJECT is any of the Lisp data types: a number, a string, a symbol,
590 a list, a buffer, a window, a frame, etc.
592 A printed representation of an object is text which describes that object. */)
593 (Lisp_Object object
, Lisp_Object noescape
)
595 Lisp_Object printcharfun
;
596 /* struct gcpro gcpro1, gcpro2; */
597 Lisp_Object save_deactivate_mark
;
598 int count
= SPECPDL_INDEX ();
599 struct buffer
*previous
;
601 specbind (Qinhibit_modification_hooks
, Qt
);
606 /* Save and restore this--we are altering a buffer
607 but we don't want to deactivate the mark just for that.
608 No need for specbind, since errors deactivate the mark. */
609 save_deactivate_mark
= Vdeactivate_mark
;
610 /* GCPRO2 (object, save_deactivate_mark); */
613 printcharfun
= Vprin1_to_string_buffer
;
615 print (object
, printcharfun
, NILP (noescape
));
616 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
620 previous
= current_buffer
;
621 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer
));
622 object
= Fbuffer_string ();
623 if (SBYTES (object
) == SCHARS (object
))
624 STRING_SET_UNIBYTE (object
);
626 /* Note that this won't make prepare_to_modify_buffer call
627 ask-user-about-supersession-threat because this buffer
628 does not visit a file. */
630 set_buffer_internal (previous
);
632 Vdeactivate_mark
= save_deactivate_mark
;
636 return unbind_to (count
, object
);
639 DEFUN ("princ", Fprinc
, Sprinc
, 1, 2, 0,
640 doc
: /* Output the printed representation of OBJECT, any Lisp object.
641 No quoting characters are used; no delimiters are printed around
642 the contents of strings.
644 OBJECT is any of the Lisp data types: a number, a string, a symbol,
645 a list, a buffer, a window, a frame, etc.
647 A printed representation of an object is text which describes that object.
649 Optional argument PRINTCHARFUN is the output stream, which can be one
652 - a buffer, in which case output is inserted into that buffer at point;
653 - a marker, in which case output is inserted at marker's position;
654 - a function, in which case that function is called once for each
655 character of OBJECT's printed representation;
656 - a symbol, in which case that symbol's function definition is called; or
657 - t, in which case the output is displayed in the echo area.
659 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
661 (Lisp_Object object
, Lisp_Object printcharfun
)
665 if (NILP (printcharfun
))
666 printcharfun
= Vstandard_output
;
668 print (object
, printcharfun
, 0);
673 DEFUN ("print", Fprint
, Sprint
, 1, 2, 0,
674 doc
: /* Output the printed representation of OBJECT, with newlines around it.
675 Quoting characters are printed when needed to make output that `read'
676 can handle, whenever this is possible. For complex objects, the behavior
677 is controlled by `print-level' and `print-length', which see.
679 OBJECT is any of the Lisp data types: a number, a string, a symbol,
680 a list, a buffer, a window, a frame, etc.
682 A printed representation of an object is text which describes that object.
684 Optional argument PRINTCHARFUN is the output stream, which can be one
687 - a buffer, in which case output is inserted into that buffer at point;
688 - a marker, in which case output is inserted at marker's position;
689 - a function, in which case that function is called once for each
690 character of OBJECT's printed representation;
691 - a symbol, in which case that symbol's function definition is called; or
692 - t, in which case the output is displayed in the echo area.
694 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
696 (Lisp_Object object
, Lisp_Object printcharfun
)
701 if (NILP (printcharfun
))
702 printcharfun
= Vstandard_output
;
706 print (object
, printcharfun
, 1);
713 /* The subroutine object for external-debugging-output is kept here
714 for the convenience of the debugger. */
715 Lisp_Object Qexternal_debugging_output
;
717 DEFUN ("external-debugging-output", Fexternal_debugging_output
, Sexternal_debugging_output
, 1, 1, 0,
718 doc
: /* Write CHARACTER to stderr.
719 You can call print while debugging emacs, and pass it this function
720 to make it write to the debugging output. */)
721 (Lisp_Object character
)
723 CHECK_NUMBER (character
);
724 putc ((int) XINT (character
), stderr
);
727 /* Send the output to a debugger (nothing happens if there isn't one). */
728 if (print_output_debug_flag
)
730 char buf
[2] = {(char) XINT (character
), '\0'};
731 OutputDebugString (buf
);
738 /* This function is never called. Its purpose is to prevent
739 print_output_debug_flag from being optimized away. */
741 extern void debug_output_compilation_hack (int) EXTERNALLY_VISIBLE
;
743 debug_output_compilation_hack (int x
)
745 print_output_debug_flag
= x
;
748 #if defined (GNU_LINUX)
750 /* This functionality is not vitally important in general, so we rely on
751 non-portable ability to use stderr as lvalue. */
753 #define WITH_REDIRECT_DEBUGGING_OUTPUT 1
755 static FILE *initial_stderr_stream
= NULL
;
757 DEFUN ("redirect-debugging-output", Fredirect_debugging_output
, Sredirect_debugging_output
,
759 "FDebug output file: \nP",
760 doc
: /* Redirect debugging output (stderr stream) to file FILE.
761 If FILE is nil, reset target to the initial stderr stream.
762 Optional arg APPEND non-nil (interactively, with prefix arg) means
763 append to existing target file. */)
764 (Lisp_Object file
, Lisp_Object append
)
766 if (initial_stderr_stream
!= NULL
)
772 stderr
= initial_stderr_stream
;
773 initial_stderr_stream
= NULL
;
777 file
= Fexpand_file_name (file
, Qnil
);
778 initial_stderr_stream
= stderr
;
779 stderr
= fopen (SSDATA (file
), NILP (append
) ? "w" : "a");
782 stderr
= initial_stderr_stream
;
783 initial_stderr_stream
= NULL
;
784 report_file_error ("Cannot open debugging output stream",
790 #endif /* GNU_LINUX */
793 /* This is the interface for debugging printing. */
796 debug_print (Lisp_Object arg
)
798 Fprin1 (arg
, Qexternal_debugging_output
);
799 fprintf (stderr
, "\r\n");
802 void safe_debug_print (Lisp_Object
) EXTERNALLY_VISIBLE
;
804 safe_debug_print (Lisp_Object arg
)
806 int valid
= valid_lisp_object_p (arg
);
811 fprintf (stderr
, "#<%s_LISP_OBJECT 0x%08"pI
"x>\r\n",
812 !valid
? "INVALID" : "SOME",
817 DEFUN ("error-message-string", Ferror_message_string
, Serror_message_string
,
819 doc
: /* Convert an error value (ERROR-SYMBOL . DATA) to an error message.
820 See Info anchor `(elisp)Definition of signal' for some details on how this
821 error message is constructed. */)
824 struct buffer
*old
= current_buffer
;
828 /* If OBJ is (error STRING), just return STRING.
829 That is not only faster, it also avoids the need to allocate
830 space here when the error is due to memory full. */
831 if (CONSP (obj
) && EQ (XCAR (obj
), Qerror
)
832 && CONSP (XCDR (obj
))
833 && STRINGP (XCAR (XCDR (obj
)))
834 && NILP (XCDR (XCDR (obj
))))
835 return XCAR (XCDR (obj
));
837 print_error_message (obj
, Vprin1_to_string_buffer
, 0, Qnil
);
839 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer
));
840 value
= Fbuffer_string ();
844 set_buffer_internal (old
);
850 /* Print an error message for the error DATA onto Lisp output stream
851 STREAM (suitable for the print functions).
852 CONTEXT is a C string describing the context of the error.
853 CALLER is the Lisp function inside which the error was signaled. */
856 print_error_message (Lisp_Object data
, Lisp_Object stream
, const char *context
,
859 Lisp_Object errname
, errmsg
, file_error
, tail
;
864 write_string_1 (context
, -1, stream
);
866 /* If we know from where the error was signaled, show it in
868 if (!NILP (caller
) && SYMBOLP (caller
))
870 Lisp_Object cname
= SYMBOL_NAME (caller
);
871 char *name
= alloca (SBYTES (cname
));
872 memcpy (name
, SDATA (cname
), SBYTES (cname
));
873 message_dolog (name
, SBYTES (cname
), 0, 0);
874 message_dolog (": ", 2, 0, 0);
877 errname
= Fcar (data
);
879 if (EQ (errname
, Qerror
))
884 errmsg
= Fcar (data
);
889 Lisp_Object error_conditions
;
890 errmsg
= Fget (errname
, Qerror_message
);
891 error_conditions
= Fget (errname
, Qerror_conditions
);
892 file_error
= Fmemq (Qfile_error
, error_conditions
);
895 /* Print an error message including the data items. */
897 tail
= Fcdr_safe (data
);
900 /* For file-error, make error message by concatenating
901 all the data items. They are all strings. */
902 if (!NILP (file_error
) && CONSP (tail
))
903 errmsg
= XCAR (tail
), tail
= XCDR (tail
);
905 if (STRINGP (errmsg
))
906 Fprinc (errmsg
, stream
);
908 write_string_1 ("peculiar error", -1, stream
);
910 for (i
= 0; CONSP (tail
); tail
= XCDR (tail
), i
= 1)
914 write_string_1 (i
? ", " : ": ", 2, stream
);
916 if (!NILP (file_error
) || EQ (errname
, Qend_of_file
))
917 Fprinc (obj
, stream
);
919 Fprin1 (obj
, stream
);
928 * The buffer should be at least as large as the max string size of the
929 * largest float, printed in the biggest notation. This is undoubtedly
930 * 20d float_output_format, with the negative of the C-constant "HUGE"
933 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
935 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
936 * case of -1e307 in 20d float_output_format. What is one to do (short of
937 * re-writing _doprnt to be more sane)?
939 * Given the above, the buffer must be least FLOAT_TO_STRING_BUFSIZE bytes.
943 float_to_string (char *buf
, double data
)
948 /* Check for plus infinity in a way that won't lose
949 if there is no plus infinity. */
950 if (data
== data
/ 2 && data
> 1.0)
952 strcpy (buf
, "1.0e+INF");
955 /* Likewise for minus infinity. */
956 if (data
== data
/ 2 && data
< -1.0)
958 strcpy (buf
, "-1.0e+INF");
961 /* Check for NaN in a way that won't fail if there are no NaNs. */
962 if (! (data
* 0.0 >= 0.0))
964 /* Prepend "-" if the NaN's sign bit is negative.
965 The sign bit of a double is the bit that is 1 in -0.0. */
967 union { double d
; char c
[sizeof (double)]; } u_data
, u_minus_zero
;
969 u_minus_zero
.d
= - 0.0;
970 for (i
= 0; i
< sizeof (double); i
++)
971 if (u_data
.c
[i
] & u_minus_zero
.c
[i
])
977 strcpy (buf
, "0.0e+NaN");
981 if (NILP (Vfloat_output_format
)
982 || !STRINGP (Vfloat_output_format
))
985 /* Generate the fewest number of digits that represent the
986 floating point value without losing information. */
987 dtoastr (buf
, FLOAT_TO_STRING_BUFSIZE
- 2, 0, 0, data
);
988 /* The decimal point must be printed, or the byte compiler can
989 get confused (Bug#8033). */
994 /* Check that the spec we have is fully valid.
995 This means not only valid for printf,
996 but meant for floats, and reasonable. */
997 cp
= SSDATA (Vfloat_output_format
);
1006 /* Check the width specification. */
1008 if ('0' <= *cp
&& *cp
<= '9')
1012 width
= (width
* 10) + (*cp
++ - '0');
1013 while (*cp
>= '0' && *cp
<= '9');
1015 /* A precision of zero is valid only for %f. */
1017 || (width
== 0 && *cp
!= 'f'))
1021 if (*cp
!= 'e' && *cp
!= 'f' && *cp
!= 'g')
1027 sprintf (buf
, SSDATA (Vfloat_output_format
), data
);
1030 /* Make sure there is a decimal point with digit after, or an
1031 exponent, so that the value is readable as a float. But don't do
1032 this with "%.0f"; it's valid for that not to produce a decimal
1033 point. Note that width can be 0 only for %.0f. */
1036 for (cp
= buf
; *cp
; cp
++)
1037 if ((*cp
< '0' || *cp
> '9') && *cp
!= '-')
1040 if (*cp
== '.' && cp
[1] == 0)
1056 print (Lisp_Object obj
, register Lisp_Object printcharfun
, int escapeflag
)
1058 new_backquote_output
= 0;
1060 /* Reset print_number_index and Vprint_number_table only when
1061 the variable Vprint_continuous_numbering is nil. Otherwise,
1062 the values of these variables will be kept between several
1064 if (NILP (Vprint_continuous_numbering
)
1065 || NILP (Vprint_number_table
))
1067 print_number_index
= 0;
1068 Vprint_number_table
= Qnil
;
1071 /* Construct Vprint_number_table for print-gensym and print-circle. */
1072 if (!NILP (Vprint_gensym
) || !NILP (Vprint_circle
))
1074 /* Construct Vprint_number_table.
1075 This increments print_number_index for the objects added. */
1077 print_preprocess (obj
);
1079 if (HASH_TABLE_P (Vprint_number_table
))
1080 { /* Remove unnecessary objects, which appear only once in OBJ;
1081 that is, whose status is Qt.
1082 Maybe a better way to do that is to copy elements to
1083 a new hash table. */
1084 struct Lisp_Hash_Table
*h
= XHASH_TABLE (Vprint_number_table
);
1087 for (i
= 0; i
< HASH_TABLE_SIZE (h
); ++i
)
1088 if (!NILP (HASH_HASH (h
, i
))
1089 && EQ (HASH_VALUE (h
, i
), Qt
))
1090 Fremhash (HASH_KEY (h
, i
), Vprint_number_table
);
1095 print_object (obj
, printcharfun
, escapeflag
);
1098 #define PRINT_CIRCLE_CANDIDATE_P(obj) \
1099 (STRINGP (obj) || CONSP (obj) \
1100 || (VECTORLIKEP (obj) \
1101 && (VECTORP (obj) || COMPILEDP (obj) \
1102 || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj) \
1103 || HASH_TABLE_P (obj) || FONTP (obj))) \
1104 || (! NILP (Vprint_gensym) \
1106 && !SYMBOL_INTERNED_P (obj)))
1108 /* Construct Vprint_number_table according to the structure of OBJ.
1109 OBJ itself and all its elements will be added to Vprint_number_table
1110 recursively if it is a list, vector, compiled function, char-table,
1111 string (its text properties will be traced), or a symbol that has
1112 no obarray (this is for the print-gensym feature).
1113 The status fields of Vprint_number_table mean whether each object appears
1114 more than once in OBJ: Qnil at the first time, and Qt after that . */
1116 print_preprocess (Lisp_Object obj
)
1121 Lisp_Object halftail
;
1123 /* Give up if we go so deep that print_object will get an error. */
1124 /* See similar code in print_object. */
1125 if (print_depth
>= PRINT_CIRCLE
)
1126 error ("Apparently circular structure being printed");
1128 /* Avoid infinite recursion for circular nested structure
1129 in the case where Vprint_circle is nil. */
1130 if (NILP (Vprint_circle
))
1132 for (i
= 0; i
< print_depth
; i
++)
1133 if (EQ (obj
, being_printed
[i
]))
1135 being_printed
[print_depth
] = obj
;
1142 if (PRINT_CIRCLE_CANDIDATE_P (obj
))
1144 if (!HASH_TABLE_P (Vprint_number_table
))
1146 Lisp_Object args
[2];
1149 Vprint_number_table
= Fmake_hash_table (2, args
);
1152 /* In case print-circle is nil and print-gensym is t,
1153 add OBJ to Vprint_number_table only when OBJ is a symbol. */
1154 if (! NILP (Vprint_circle
) || SYMBOLP (obj
))
1156 Lisp_Object num
= Fgethash (obj
, Vprint_number_table
, Qnil
);
1158 /* If Vprint_continuous_numbering is non-nil and OBJ is a gensym,
1159 always print the gensym with a number. This is a special for
1160 the lisp function byte-compile-output-docform. */
1161 || (!NILP (Vprint_continuous_numbering
)
1163 && !SYMBOL_INTERNED_P (obj
)))
1164 { /* OBJ appears more than once. Let's remember that. */
1165 if (!INTEGERP (num
))
1167 print_number_index
++;
1168 /* Negative number indicates it hasn't been printed yet. */
1169 Fputhash (obj
, make_number (- print_number_index
),
1170 Vprint_number_table
);
1176 /* OBJ is not yet recorded. Let's add to the table. */
1177 Fputhash (obj
, Qt
, Vprint_number_table
);
1180 switch (XTYPE (obj
))
1183 /* A string may have text properties, which can be circular. */
1184 traverse_intervals_noorder (STRING_INTERVALS (obj
),
1185 print_preprocess_string
, Qnil
);
1189 /* Use HALFTAIL and LOOP_COUNT to detect circular lists,
1190 just as in print_object. */
1191 if (loop_count
&& EQ (obj
, halftail
))
1193 print_preprocess (XCAR (obj
));
1196 if (!(loop_count
& 1))
1197 halftail
= XCDR (halftail
);
1200 case Lisp_Vectorlike
:
1202 if (size
& PSEUDOVECTOR_FLAG
)
1203 size
&= PSEUDOVECTOR_SIZE_MASK
;
1204 for (i
= 0; i
< size
; i
++)
1205 print_preprocess (XVECTOR (obj
)->contents
[i
]);
1206 if (HASH_TABLE_P (obj
))
1207 { /* For hash tables, the key_and_value slot is past
1208 `size' because it needs to be marked specially in case
1209 the table is weak. */
1210 struct Lisp_Hash_Table
*h
= XHASH_TABLE (obj
);
1211 print_preprocess (h
->key_and_value
);
1223 print_preprocess_string (INTERVAL interval
, Lisp_Object arg
)
1225 print_preprocess (interval
->plist
);
1228 static void print_check_string_charset_prop (INTERVAL interval
, Lisp_Object string
);
1230 #define PRINT_STRING_NON_CHARSET_FOUND 1
1231 #define PRINT_STRING_UNSAFE_CHARSET_FOUND 2
1233 /* Bitwise or of the above macros. */
1234 static int print_check_string_result
;
1237 print_check_string_charset_prop (INTERVAL interval
, Lisp_Object string
)
1241 if (NILP (interval
->plist
)
1242 || (print_check_string_result
== (PRINT_STRING_NON_CHARSET_FOUND
1243 | PRINT_STRING_UNSAFE_CHARSET_FOUND
)))
1245 for (val
= interval
->plist
; CONSP (val
) && ! EQ (XCAR (val
), Qcharset
);
1246 val
= XCDR (XCDR (val
)));
1249 print_check_string_result
|= PRINT_STRING_NON_CHARSET_FOUND
;
1252 if (! (print_check_string_result
& PRINT_STRING_NON_CHARSET_FOUND
))
1254 if (! EQ (val
, interval
->plist
)
1255 || CONSP (XCDR (XCDR (val
))))
1256 print_check_string_result
|= PRINT_STRING_NON_CHARSET_FOUND
;
1258 if (NILP (Vprint_charset_text_property
)
1259 || ! (print_check_string_result
& PRINT_STRING_UNSAFE_CHARSET_FOUND
))
1262 EMACS_INT charpos
= interval
->position
;
1263 EMACS_INT bytepos
= string_char_to_byte (string
, charpos
);
1264 Lisp_Object charset
;
1266 charset
= XCAR (XCDR (val
));
1267 for (i
= 0; i
< LENGTH (interval
); i
++)
1269 FETCH_STRING_CHAR_ADVANCE (c
, string
, charpos
, bytepos
);
1270 if (! ASCII_CHAR_P (c
)
1271 && ! EQ (CHARSET_NAME (CHAR_CHARSET (c
)), charset
))
1273 print_check_string_result
|= PRINT_STRING_UNSAFE_CHARSET_FOUND
;
1280 /* The value is (charset . nil). */
1281 static Lisp_Object print_prune_charset_plist
;
1284 print_prune_string_charset (Lisp_Object string
)
1286 print_check_string_result
= 0;
1287 traverse_intervals (STRING_INTERVALS (string
), 0,
1288 print_check_string_charset_prop
, string
);
1289 if (! (print_check_string_result
& PRINT_STRING_UNSAFE_CHARSET_FOUND
))
1291 string
= Fcopy_sequence (string
);
1292 if (print_check_string_result
& PRINT_STRING_NON_CHARSET_FOUND
)
1294 if (NILP (print_prune_charset_plist
))
1295 print_prune_charset_plist
= Fcons (Qcharset
, Qnil
);
1296 Fremove_text_properties (make_number (0),
1297 make_number (SCHARS (string
)),
1298 print_prune_charset_plist
, string
);
1301 Fset_text_properties (make_number (0), make_number (SCHARS (string
)),
1308 print_object (Lisp_Object obj
, register Lisp_Object printcharfun
, int escapeflag
)
1314 /* See similar code in print_preprocess. */
1315 if (print_depth
>= PRINT_CIRCLE
)
1316 error ("Apparently circular structure being printed");
1318 /* Detect circularities and truncate them. */
1319 if (PRINT_CIRCLE_CANDIDATE_P (obj
))
1321 if (NILP (Vprint_circle
) && NILP (Vprint_gensym
))
1323 /* Simple but incomplete way. */
1325 for (i
= 0; i
< print_depth
; i
++)
1326 if (EQ (obj
, being_printed
[i
]))
1328 sprintf (buf
, "#%d", i
);
1329 strout (buf
, -1, -1, printcharfun
);
1332 being_printed
[print_depth
] = obj
;
1336 /* With the print-circle feature. */
1337 Lisp_Object num
= Fgethash (obj
, Vprint_number_table
, Qnil
);
1340 EMACS_INT n
= XINT (num
);
1342 { /* Add a prefix #n= if OBJ has not yet been printed;
1343 that is, its status field is nil. */
1344 sprintf (buf
, "#%"pI
"d=", -n
);
1345 strout (buf
, -1, -1, printcharfun
);
1346 /* OBJ is going to be printed. Remember that fact. */
1347 Fputhash (obj
, make_number (- n
), Vprint_number_table
);
1351 /* Just print #n# if OBJ has already been printed. */
1352 sprintf (buf
, "#%"pI
"d#", n
);
1353 strout (buf
, -1, -1, printcharfun
);
1362 switch (XTYPE (obj
))
1365 sprintf (buf
, "%"pI
"d", XINT (obj
));
1366 strout (buf
, -1, -1, printcharfun
);
1371 char pigbuf
[FLOAT_TO_STRING_BUFSIZE
];
1373 float_to_string (pigbuf
, XFLOAT_DATA (obj
));
1374 strout (pigbuf
, -1, -1, printcharfun
);
1380 print_string (obj
, printcharfun
);
1383 register EMACS_INT i_byte
;
1384 struct gcpro gcpro1
;
1386 EMACS_INT size_byte
;
1387 /* 1 means we must ensure that the next character we output
1388 cannot be taken as part of a hex character escape. */
1389 int need_nonhex
= 0;
1390 int multibyte
= STRING_MULTIBYTE (obj
);
1394 if (! EQ (Vprint_charset_text_property
, Qt
))
1395 obj
= print_prune_string_charset (obj
);
1397 if (!NULL_INTERVAL_P (STRING_INTERVALS (obj
)))
1405 size_byte
= SBYTES (obj
);
1407 for (i_byte
= 0; i_byte
< size_byte
;)
1409 /* Here, we must convert each multi-byte form to the
1410 corresponding character code before handing it to PRINTCHAR. */
1416 c
= STRING_CHAR_AND_LENGTH (str
+ i_byte
, len
);
1424 if (c
== '\n' && print_escape_newlines
)
1429 else if (c
== '\f' && print_escape_newlines
)
1435 && (CHAR_BYTE8_P (c
)
1436 || (! ASCII_CHAR_P (c
) && print_escape_multibyte
)))
1438 /* When multibyte is disabled,
1439 print multibyte string chars using hex escapes.
1440 For a char code that could be in a unibyte string,
1441 when found in a multibyte string, always use a hex escape
1442 so it reads back as multibyte. */
1445 if (CHAR_BYTE8_P (c
))
1446 sprintf (outbuf
, "\\%03o", CHAR_TO_BYTE8 (c
));
1449 sprintf (outbuf
, "\\x%04x", c
);
1452 strout (outbuf
, -1, -1, printcharfun
);
1454 else if (! multibyte
1455 && SINGLE_BYTE_CHAR_P (c
) && ! ASCII_BYTE_P (c
)
1456 && print_escape_nonascii
)
1458 /* When printing in a multibyte buffer
1459 or when explicitly requested,
1460 print single-byte non-ASCII string chars
1461 using octal escapes. */
1463 sprintf (outbuf
, "\\%03o", c
);
1464 strout (outbuf
, -1, -1, printcharfun
);
1468 /* If we just had a hex escape, and this character
1469 could be taken as part of it,
1470 output `\ ' to prevent that. */
1474 if ((c
>= 'a' && c
<= 'f')
1475 || (c
>= 'A' && c
<= 'F')
1476 || (c
>= '0' && c
<= '9'))
1477 strout ("\\ ", -1, -1, printcharfun
);
1480 if (c
== '\"' || c
== '\\')
1487 if (!NULL_INTERVAL_P (STRING_INTERVALS (obj
)))
1489 traverse_intervals (STRING_INTERVALS (obj
),
1490 0, print_interval
, printcharfun
);
1500 register int confusing
;
1501 register unsigned char *p
= SDATA (SYMBOL_NAME (obj
));
1502 register unsigned char *end
= p
+ SBYTES (SYMBOL_NAME (obj
));
1505 EMACS_INT size_byte
;
1508 name
= SYMBOL_NAME (obj
);
1510 if (p
!= end
&& (*p
== '-' || *p
== '+')) p
++;
1513 /* If symbol name begins with a digit, and ends with a digit,
1514 and contains nothing but digits and `e', it could be treated
1515 as a number. So set CONFUSING.
1517 Symbols that contain periods could also be taken as numbers,
1518 but periods are always escaped, so we don't have to worry
1520 else if (*p
>= '0' && *p
<= '9'
1521 && end
[-1] >= '0' && end
[-1] <= '9')
1523 while (p
!= end
&& ((*p
>= '0' && *p
<= '9')
1524 /* Needed for \2e10. */
1525 || *p
== 'e' || *p
== 'E'))
1527 confusing
= (end
== p
);
1532 if (! NILP (Vprint_gensym
) && !SYMBOL_INTERNED_P (obj
))
1538 size_byte
= SBYTES (name
);
1540 for (i
= 0, i_byte
= 0; i_byte
< size_byte
;)
1542 /* Here, we must convert each multi-byte form to the
1543 corresponding character code before handing it to PRINTCHAR. */
1544 FETCH_STRING_CHAR_ADVANCE (c
, name
, i
, i_byte
);
1549 if (c
== '\"' || c
== '\\' || c
== '\''
1550 || c
== ';' || c
== '#' || c
== '(' || c
== ')'
1551 || c
== ',' || c
=='.' || c
== '`'
1552 || c
== '[' || c
== ']' || c
== '?' || c
<= 040
1554 PRINTCHAR ('\\'), confusing
= 0;
1562 /* If deeper than spec'd depth, print placeholder. */
1563 if (INTEGERP (Vprint_level
)
1564 && print_depth
> XINT (Vprint_level
))
1565 strout ("...", -1, -1, printcharfun
);
1566 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1567 && (EQ (XCAR (obj
), Qquote
)))
1570 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1572 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1573 && (EQ (XCAR (obj
), Qfunction
)))
1577 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1579 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1580 && ((EQ (XCAR (obj
), Qbackquote
))))
1582 print_object (XCAR (obj
), printcharfun
, 0);
1583 new_backquote_output
++;
1584 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1585 new_backquote_output
--;
1587 else if (print_quoted
&& CONSP (XCDR (obj
)) && NILP (XCDR (XCDR (obj
)))
1588 && new_backquote_output
1589 && ((EQ (XCAR (obj
), Qbackquote
)
1590 || EQ (XCAR (obj
), Qcomma
)
1591 || EQ (XCAR (obj
), Qcomma_at
)
1592 || EQ (XCAR (obj
), Qcomma_dot
))))
1594 print_object (XCAR (obj
), printcharfun
, 0);
1595 new_backquote_output
--;
1596 print_object (XCAR (XCDR (obj
)), printcharfun
, escapeflag
);
1597 new_backquote_output
++;
1604 EMACS_INT print_length
;
1606 Lisp_Object halftail
= obj
;
1608 /* Negative values of print-length are invalid in CL.
1609 Treat them like nil, as CMUCL does. */
1610 if (NATNUMP (Vprint_length
))
1611 print_length
= XFASTINT (Vprint_length
);
1618 /* Detect circular list. */
1619 if (NILP (Vprint_circle
))
1621 /* Simple but imcomplete way. */
1622 if (i
!= 0 && EQ (obj
, halftail
))
1624 sprintf (buf
, " . #%d", i
/ 2);
1625 strout (buf
, -1, -1, printcharfun
);
1631 /* With the print-circle feature. */
1634 Lisp_Object num
= Fgethash (obj
, Vprint_number_table
, Qnil
);
1637 strout (" . ", 3, 3, printcharfun
);
1638 print_object (obj
, printcharfun
, escapeflag
);
1647 if (print_length
&& i
> print_length
)
1649 strout ("...", 3, 3, printcharfun
);
1653 print_object (XCAR (obj
), printcharfun
, escapeflag
);
1657 halftail
= XCDR (halftail
);
1661 /* OBJ non-nil here means it's the end of a dotted list. */
1664 strout (" . ", 3, 3, printcharfun
);
1665 print_object (obj
, printcharfun
, escapeflag
);
1673 case Lisp_Vectorlike
:
1678 strout ("#<process ", -1, -1, printcharfun
);
1679 print_string (XPROCESS (obj
)->name
, printcharfun
);
1683 print_string (XPROCESS (obj
)->name
, printcharfun
);
1685 else if (BOOL_VECTOR_P (obj
))
1688 register unsigned char c
;
1689 struct gcpro gcpro1
;
1690 EMACS_INT size_in_chars
1691 = ((XBOOL_VECTOR (obj
)->size
+ BOOL_VECTOR_BITS_PER_CHAR
- 1)
1692 / BOOL_VECTOR_BITS_PER_CHAR
);
1698 sprintf (buf
, "%"pI
"d", XBOOL_VECTOR (obj
)->size
);
1699 strout (buf
, -1, -1, printcharfun
);
1702 /* Don't print more characters than the specified maximum.
1703 Negative values of print-length are invalid. Treat them
1704 like a print-length of nil. */
1705 if (NATNUMP (Vprint_length
)
1706 && XFASTINT (Vprint_length
) < size_in_chars
)
1707 size_in_chars
= XFASTINT (Vprint_length
);
1709 for (i
= 0; i
< size_in_chars
; i
++)
1712 c
= XBOOL_VECTOR (obj
)->data
[i
];
1713 if (c
== '\n' && print_escape_newlines
)
1718 else if (c
== '\f' && print_escape_newlines
)
1723 else if (c
> '\177')
1725 /* Use octal escapes to avoid encoding issues. */
1727 PRINTCHAR ('0' + ((c
>> 6) & 3));
1728 PRINTCHAR ('0' + ((c
>> 3) & 7));
1729 PRINTCHAR ('0' + (c
& 7));
1733 if (c
== '\"' || c
== '\\')
1742 else if (SUBRP (obj
))
1744 strout ("#<subr ", -1, -1, printcharfun
);
1745 strout (XSUBR (obj
)->symbol_name
, -1, -1, printcharfun
);
1748 else if (WINDOWP (obj
))
1750 strout ("#<window ", -1, -1, printcharfun
);
1751 sprintf (buf
, "%"pI
"d", XFASTINT (XWINDOW (obj
)->sequence_number
));
1752 strout (buf
, -1, -1, printcharfun
);
1753 if (!NILP (XWINDOW (obj
)->buffer
))
1755 strout (" on ", -1, -1, printcharfun
);
1756 print_string (BVAR (XBUFFER (XWINDOW (obj
)->buffer
), name
), printcharfun
);
1760 else if (TERMINALP (obj
))
1762 struct terminal
*t
= XTERMINAL (obj
);
1763 strout ("#<terminal ", -1, -1, printcharfun
);
1764 sprintf (buf
, "%d", t
->id
);
1765 strout (buf
, -1, -1, printcharfun
);
1768 strout (" on ", -1, -1, printcharfun
);
1769 strout (t
->name
, -1, -1, printcharfun
);
1773 else if (HASH_TABLE_P (obj
))
1775 struct Lisp_Hash_Table
*h
= XHASH_TABLE (obj
);
1777 EMACS_INT real_size
, size
;
1779 strout ("#<hash-table", -1, -1, printcharfun
);
1780 if (SYMBOLP (h
->test
))
1784 strout (SDATA (SYMBOL_NAME (h
->test
)), -1, -1, printcharfun
);
1786 strout (SDATA (SYMBOL_NAME (h
->weak
)), -1, -1, printcharfun
);
1788 sprintf (buf
, "%ld/%ld", (long) h
->count
,
1789 (long) ASIZE (h
->next
));
1790 strout (buf
, -1, -1, printcharfun
);
1792 sprintf (buf
, " 0x%lx", (unsigned long) h
);
1793 strout (buf
, -1, -1, printcharfun
);
1796 /* Implement a readable output, e.g.:
1797 #s(hash-table size 2 test equal data (k1 v1 k2 v2)) */
1798 /* Always print the size. */
1799 sprintf (buf
, "#s(hash-table size %ld",
1800 (long) ASIZE (h
->next
));
1801 strout (buf
, -1, -1, printcharfun
);
1803 if (!NILP (h
->test
))
1805 strout (" test ", -1, -1, printcharfun
);
1806 print_object (h
->test
, printcharfun
, escapeflag
);
1809 if (!NILP (h
->weak
))
1811 strout (" weakness ", -1, -1, printcharfun
);
1812 print_object (h
->weak
, printcharfun
, escapeflag
);
1815 if (!NILP (h
->rehash_size
))
1817 strout (" rehash-size ", -1, -1, printcharfun
);
1818 print_object (h
->rehash_size
, printcharfun
, escapeflag
);
1821 if (!NILP (h
->rehash_threshold
))
1823 strout (" rehash-threshold ", -1, -1, printcharfun
);
1824 print_object (h
->rehash_threshold
, printcharfun
, escapeflag
);
1827 strout (" data ", -1, -1, printcharfun
);
1829 /* Print the data here as a plist. */
1830 real_size
= HASH_TABLE_SIZE (h
);
1833 /* Don't print more elements than the specified maximum. */
1834 if (NATNUMP (Vprint_length
)
1835 && XFASTINT (Vprint_length
) < size
)
1836 size
= XFASTINT (Vprint_length
);
1839 for (i
= 0; i
< size
; i
++)
1840 if (!NILP (HASH_HASH (h
, i
)))
1842 if (i
) PRINTCHAR (' ');
1843 print_object (HASH_KEY (h
, i
), printcharfun
, escapeflag
);
1845 print_object (HASH_VALUE (h
, i
), printcharfun
, escapeflag
);
1848 if (size
< real_size
)
1849 strout (" ...", 4, 4, printcharfun
);
1855 else if (BUFFERP (obj
))
1857 if (NILP (BVAR (XBUFFER (obj
), name
)))
1858 strout ("#<killed buffer>", -1, -1, printcharfun
);
1859 else if (escapeflag
)
1861 strout ("#<buffer ", -1, -1, printcharfun
);
1862 print_string (BVAR (XBUFFER (obj
), name
), printcharfun
);
1866 print_string (BVAR (XBUFFER (obj
), name
), printcharfun
);
1868 else if (WINDOW_CONFIGURATIONP (obj
))
1870 strout ("#<window-configuration>", -1, -1, printcharfun
);
1872 else if (FRAMEP (obj
))
1874 strout ((FRAME_LIVE_P (XFRAME (obj
))
1875 ? "#<frame " : "#<dead frame "),
1876 -1, -1, printcharfun
);
1877 print_string (XFRAME (obj
)->name
, printcharfun
);
1878 sprintf (buf
, " %p", XFRAME (obj
));
1879 strout (buf
, -1, -1, printcharfun
);
1882 else if (FONTP (obj
))
1886 if (! FONT_OBJECT_P (obj
))
1888 if (FONT_SPEC_P (obj
))
1889 strout ("#<font-spec", -1, -1, printcharfun
);
1891 strout ("#<font-entity", -1, -1, printcharfun
);
1892 for (i
= 0; i
< FONT_SPEC_MAX
; i
++)
1895 if (i
< FONT_WEIGHT_INDEX
|| i
> FONT_WIDTH_INDEX
)
1896 print_object (AREF (obj
, i
), printcharfun
, escapeflag
);
1898 print_object (font_style_symbolic (obj
, i
, 0),
1899 printcharfun
, escapeflag
);
1904 strout ("#<font-object ", -1, -1, printcharfun
);
1905 print_object (AREF (obj
, FONT_NAME_INDEX
), printcharfun
,
1912 EMACS_INT size
= ASIZE (obj
);
1913 if (COMPILEDP (obj
))
1916 size
&= PSEUDOVECTOR_SIZE_MASK
;
1918 if (CHAR_TABLE_P (obj
) || SUB_CHAR_TABLE_P (obj
))
1920 /* We print a char-table as if it were a vector,
1921 lumping the parent and default slots in with the
1922 character slots. But we add #^ as a prefix. */
1924 /* Make each lowest sub_char_table start a new line.
1925 Otherwise we'll make a line extremely long, which
1926 results in slow redisplay. */
1927 if (SUB_CHAR_TABLE_P (obj
)
1928 && XINT (XSUB_CHAR_TABLE (obj
)->depth
) == 3)
1932 if (SUB_CHAR_TABLE_P (obj
))
1934 size
&= PSEUDOVECTOR_SIZE_MASK
;
1936 if (size
& PSEUDOVECTOR_FLAG
)
1942 register Lisp_Object tem
;
1943 EMACS_INT real_size
= size
;
1945 /* Don't print more elements than the specified maximum. */
1946 if (NATNUMP (Vprint_length
)
1947 && XFASTINT (Vprint_length
) < size
)
1948 size
= XFASTINT (Vprint_length
);
1950 for (i
= 0; i
< size
; i
++)
1952 if (i
) PRINTCHAR (' ');
1953 tem
= XVECTOR (obj
)->contents
[i
];
1954 print_object (tem
, printcharfun
, escapeflag
);
1956 if (size
< real_size
)
1957 strout (" ...", 4, 4, printcharfun
);
1964 switch (XMISCTYPE (obj
))
1966 case Lisp_Misc_Marker
:
1967 strout ("#<marker ", -1, -1, printcharfun
);
1968 /* Do you think this is necessary? */
1969 if (XMARKER (obj
)->insertion_type
!= 0)
1970 strout ("(moves after insertion) ", -1, -1, printcharfun
);
1971 if (! XMARKER (obj
)->buffer
)
1972 strout ("in no buffer", -1, -1, printcharfun
);
1975 sprintf (buf
, "at %"pI
"d", marker_position (obj
));
1976 strout (buf
, -1, -1, printcharfun
);
1977 strout (" in ", -1, -1, printcharfun
);
1978 print_string (BVAR (XMARKER (obj
)->buffer
, name
), printcharfun
);
1983 case Lisp_Misc_Overlay
:
1984 strout ("#<overlay ", -1, -1, printcharfun
);
1985 if (! XMARKER (OVERLAY_START (obj
))->buffer
)
1986 strout ("in no buffer", -1, -1, printcharfun
);
1989 sprintf (buf
, "from %"pI
"d to %"pI
"d in ",
1990 marker_position (OVERLAY_START (obj
)),
1991 marker_position (OVERLAY_END (obj
)));
1992 strout (buf
, -1, -1, printcharfun
);
1993 print_string (BVAR (XMARKER (OVERLAY_START (obj
))->buffer
, name
),
1999 /* Remaining cases shouldn't happen in normal usage, but let's print
2000 them anyway for the benefit of the debugger. */
2001 case Lisp_Misc_Free
:
2002 strout ("#<misc free cell>", -1, -1, printcharfun
);
2005 case Lisp_Misc_Save_Value
:
2006 strout ("#<save_value ", -1, -1, printcharfun
);
2007 sprintf(buf
, "ptr=%p int=%d",
2008 XSAVE_VALUE (obj
)->pointer
,
2009 XSAVE_VALUE (obj
)->integer
);
2010 strout (buf
, -1, -1, printcharfun
);
2022 /* We're in trouble if this happens!
2023 Probably should just abort () */
2024 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun
);
2026 sprintf (buf
, "(MISC 0x%04x)", (int) XMISCTYPE (obj
));
2027 else if (VECTORLIKEP (obj
))
2028 sprintf (buf
, "(PVEC 0x%08lx)", (unsigned long) ASIZE (obj
));
2030 sprintf (buf
, "(0x%02x)", (int) XTYPE (obj
));
2031 strout (buf
, -1, -1, printcharfun
);
2032 strout (" Save your buffers immediately and please report this bug>",
2033 -1, -1, printcharfun
);
2041 /* Print a description of INTERVAL using PRINTCHARFUN.
2042 This is part of printing a string that has text properties. */
2045 print_interval (INTERVAL interval
, Lisp_Object printcharfun
)
2047 if (NILP (interval
->plist
))
2050 print_object (make_number (interval
->position
), printcharfun
, 1);
2052 print_object (make_number (interval
->position
+ LENGTH (interval
)),
2055 print_object (interval
->plist
, printcharfun
, 1);
2060 syms_of_print (void)
2062 Qtemp_buffer_setup_hook
= intern_c_string ("temp-buffer-setup-hook");
2063 staticpro (&Qtemp_buffer_setup_hook
);
2065 DEFVAR_LISP ("standard-output", Vstandard_output
,
2066 doc
: /* Output stream `print' uses by default for outputting a character.
2067 This may be any function of one argument.
2068 It may also be a buffer (output is inserted before point)
2069 or a marker (output is inserted and the marker is advanced)
2070 or the symbol t (output appears in the echo area). */);
2071 Vstandard_output
= Qt
;
2072 Qstandard_output
= intern_c_string ("standard-output");
2073 staticpro (&Qstandard_output
);
2075 DEFVAR_LISP ("float-output-format", Vfloat_output_format
,
2076 doc
: /* The format descriptor string used to print floats.
2077 This is a %-spec like those accepted by `printf' in C,
2078 but with some restrictions. It must start with the two characters `%.'.
2079 After that comes an integer precision specification,
2080 and then a letter which controls the format.
2081 The letters allowed are `e', `f' and `g'.
2082 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"
2083 Use `f' for decimal point notation \"DIGITS.DIGITS\".
2084 Use `g' to choose the shorter of those two formats for the number at hand.
2085 The precision in any of these cases is the number of digits following
2086 the decimal point. With `f', a precision of 0 means to omit the
2087 decimal point. 0 is not allowed with `e' or `g'.
2089 A value of nil means to use the shortest notation
2090 that represents the number without losing information. */);
2091 Vfloat_output_format
= Qnil
;
2092 Qfloat_output_format
= intern_c_string ("float-output-format");
2093 staticpro (&Qfloat_output_format
);
2095 DEFVAR_LISP ("print-length", Vprint_length
,
2096 doc
: /* Maximum length of list to print before abbreviating.
2097 A value of nil means no limit. See also `eval-expression-print-length'. */);
2098 Vprint_length
= Qnil
;
2100 DEFVAR_LISP ("print-level", Vprint_level
,
2101 doc
: /* Maximum depth of list nesting to print before abbreviating.
2102 A value of nil means no limit. See also `eval-expression-print-level'. */);
2103 Vprint_level
= Qnil
;
2105 DEFVAR_BOOL ("print-escape-newlines", print_escape_newlines
,
2106 doc
: /* Non-nil means print newlines in strings as `\\n'.
2107 Also print formfeeds as `\\f'. */);
2108 print_escape_newlines
= 0;
2110 DEFVAR_BOOL ("print-escape-nonascii", print_escape_nonascii
,
2111 doc
: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO.
2112 \(OOO is the octal representation of the character code.)
2113 Only single-byte characters are affected, and only in `prin1'.
2114 When the output goes in a multibyte buffer, this feature is
2115 enabled regardless of the value of the variable. */);
2116 print_escape_nonascii
= 0;
2118 DEFVAR_BOOL ("print-escape-multibyte", print_escape_multibyte
,
2119 doc
: /* Non-nil means print multibyte characters in strings as \\xXXXX.
2120 \(XXXX is the hex representation of the character code.)
2121 This affects only `prin1'. */);
2122 print_escape_multibyte
= 0;
2124 DEFVAR_BOOL ("print-quoted", print_quoted
,
2125 doc
: /* Non-nil means print quoted forms with reader syntax.
2126 I.e., (quote foo) prints as 'foo, (function foo) as #'foo. */);
2129 DEFVAR_LISP ("print-gensym", Vprint_gensym
,
2130 doc
: /* Non-nil means print uninterned symbols so they will read as uninterned.
2131 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.
2132 When the uninterned symbol appears within a recursive data structure,
2133 and the symbol appears more than once, in addition use the #N# and #N=
2134 constructs as needed, so that multiple references to the same symbol are
2135 shared once again when the text is read back. */);
2136 Vprint_gensym
= Qnil
;
2138 DEFVAR_LISP ("print-circle", Vprint_circle
,
2139 doc
: /* *Non-nil means print recursive structures using #N= and #N# syntax.
2140 If nil, printing proceeds recursively and may lead to
2141 `max-lisp-eval-depth' being exceeded or an error may occur:
2142 \"Apparently circular structure being printed.\" Also see
2143 `print-length' and `print-level'.
2144 If non-nil, shared substructures anywhere in the structure are printed
2145 with `#N=' before the first occurrence (in the order of the print
2146 representation) and `#N#' in place of each subsequent occurrence,
2147 where N is a positive decimal integer. */);
2148 Vprint_circle
= Qnil
;
2150 DEFVAR_LISP ("print-continuous-numbering", Vprint_continuous_numbering
,
2151 doc
: /* *Non-nil means number continuously across print calls.
2152 This affects the numbers printed for #N= labels and #M# references.
2153 See also `print-circle', `print-gensym', and `print-number-table'.
2154 This variable should not be set with `setq'; bind it with a `let' instead. */);
2155 Vprint_continuous_numbering
= Qnil
;
2157 DEFVAR_LISP ("print-number-table", Vprint_number_table
,
2158 doc
: /* A vector used internally to produce `#N=' labels and `#N#' references.
2159 The Lisp printer uses this vector to detect Lisp objects referenced more
2162 When you bind `print-continuous-numbering' to t, you should probably
2163 also bind `print-number-table' to nil. This ensures that the value of
2164 `print-number-table' can be garbage-collected once the printing is
2165 done. If all elements of `print-number-table' are nil, it means that
2166 the printing done so far has not found any shared structure or objects
2167 that need to be recorded in the table. */);
2168 Vprint_number_table
= Qnil
;
2170 DEFVAR_LISP ("print-charset-text-property", Vprint_charset_text_property
,
2171 doc
: /* A flag to control printing of `charset' text property on printing a string.
2172 The value must be nil, t, or `default'.
2174 If the value is nil, don't print the text property `charset'.
2176 If the value is t, always print the text property `charset'.
2178 If the value is `default', print the text property `charset' only when
2179 the value is different from what is guessed in the current charset
2181 Vprint_charset_text_property
= Qdefault
;
2183 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
2184 staticpro (&Vprin1_to_string_buffer
);
2187 defsubr (&Sprin1_to_string
);
2188 defsubr (&Serror_message_string
);
2192 defsubr (&Swrite_char
);
2193 defsubr (&Sexternal_debugging_output
);
2194 #ifdef WITH_REDIRECT_DEBUGGING_OUTPUT
2195 defsubr (&Sredirect_debugging_output
);
2198 Qexternal_debugging_output
= intern_c_string ("external-debugging-output");
2199 staticpro (&Qexternal_debugging_output
);
2201 Qprint_escape_newlines
= intern_c_string ("print-escape-newlines");
2202 staticpro (&Qprint_escape_newlines
);
2204 Qprint_escape_multibyte
= intern_c_string ("print-escape-multibyte");
2205 staticpro (&Qprint_escape_multibyte
);
2207 Qprint_escape_nonascii
= intern_c_string ("print-escape-nonascii");
2208 staticpro (&Qprint_escape_nonascii
);
2210 print_prune_charset_plist
= Qnil
;
2211 staticpro (&print_prune_charset_plist
);