]> code.delx.au - gnu-emacs/blob - src/print.c
Merge branch 'trunk' into xwidget
[gnu-emacs] / src / print.c
1 /* Lisp object printing and output streams.
2
3 Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2013 Free Software
4 Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
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.
12
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.
17
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/>. */
20
21
22 #include <config.h>
23 #include "sysstdio.h"
24
25 #include "lisp.h"
26 #include "character.h"
27 #include "buffer.h"
28 #include "charset.h"
29 #include "keyboard.h"
30 #include "frame.h"
31 #include "window.h"
32 #include "process.h"
33 #include "dispextern.h"
34 #include "termchar.h"
35 #include "intervals.h"
36 #include "blockinput.h"
37 #include "termhooks.h" /* For struct terminal. */
38 #include "font.h"
39 #ifdef HAVE_XWIDGETS
40 #include "xwidget.h"
41 #endif
42 Lisp_Object Qstandard_output;
43
44 static Lisp_Object Qtemp_buffer_setup_hook;
45
46 /* These are used to print like we read. */
47
48 static Lisp_Object Qfloat_output_format;
49
50 #include <float.h>
51 #include <ftoastr.h>
52
53 /* Avoid actual stack overflow in print. */
54 static ptrdiff_t print_depth;
55
56 /* Level of nesting inside outputting backquote in new style. */
57 static ptrdiff_t new_backquote_output;
58
59 /* Detect most circularities to print finite output. */
60 #define PRINT_CIRCLE 200
61 static Lisp_Object being_printed[PRINT_CIRCLE];
62
63 /* When printing into a buffer, first we put the text in this
64 block, then insert it all at once. */
65 static char *print_buffer;
66
67 /* Size allocated in print_buffer. */
68 static ptrdiff_t print_buffer_size;
69 /* Chars stored in print_buffer. */
70 static ptrdiff_t print_buffer_pos;
71 /* Bytes stored in print_buffer. */
72 static ptrdiff_t print_buffer_pos_byte;
73
74 Lisp_Object Qprint_escape_newlines;
75 static Lisp_Object Qprint_escape_multibyte, Qprint_escape_nonascii;
76
77 /* Vprint_number_table is a table, that keeps objects that are going to
78 be printed, to allow use of #n= and #n# to express sharing.
79 For any given object, the table can give the following values:
80 t the object will be printed only once.
81 -N the object will be printed several times and will take number N.
82 N the object has been printed so we can refer to it as #N#.
83 print_number_index holds the largest N already used.
84 N has to be striclty larger than 0 since we need to distinguish -N. */
85 static ptrdiff_t print_number_index;
86 static void print_interval (INTERVAL interval, Lisp_Object printcharfun);
87
88 /* GDB resets this to zero on W32 to disable OutputDebugString calls. */
89 bool print_output_debug_flag EXTERNALLY_VISIBLE = 1;
90
91 \f
92 /* Low level output routines for characters and strings. */
93
94 /* Lisp functions to do output using a stream
95 must have the stream in a variable called printcharfun
96 and must start with PRINTPREPARE, end with PRINTFINISH,
97 and use PRINTDECLARE to declare common variables.
98 Use PRINTCHAR to output one character,
99 or call strout to output a block of characters. */
100
101 #define PRINTDECLARE \
102 struct buffer *old = current_buffer; \
103 ptrdiff_t old_point = -1, start_point = -1; \
104 ptrdiff_t old_point_byte = -1, start_point_byte = -1; \
105 ptrdiff_t specpdl_count = SPECPDL_INDEX (); \
106 bool free_print_buffer = 0; \
107 bool multibyte \
108 = !NILP (BVAR (current_buffer, enable_multibyte_characters)); \
109 Lisp_Object original
110
111 #define PRINTPREPARE \
112 original = printcharfun; \
113 if (NILP (printcharfun)) printcharfun = Qt; \
114 if (BUFFERP (printcharfun)) \
115 { \
116 if (XBUFFER (printcharfun) != current_buffer) \
117 Fset_buffer (printcharfun); \
118 printcharfun = Qnil; \
119 } \
120 if (MARKERP (printcharfun)) \
121 { \
122 ptrdiff_t marker_pos; \
123 if (! XMARKER (printcharfun)->buffer) \
124 error ("Marker does not point anywhere"); \
125 if (XMARKER (printcharfun)->buffer != current_buffer) \
126 set_buffer_internal (XMARKER (printcharfun)->buffer); \
127 marker_pos = marker_position (printcharfun); \
128 if (marker_pos < BEGV || marker_pos > ZV) \
129 error ("Marker is outside the accessible part of the buffer"); \
130 old_point = PT; \
131 old_point_byte = PT_BYTE; \
132 SET_PT_BOTH (marker_pos, \
133 marker_byte_position (printcharfun)); \
134 start_point = PT; \
135 start_point_byte = PT_BYTE; \
136 printcharfun = Qnil; \
137 } \
138 if (NILP (printcharfun)) \
139 { \
140 Lisp_Object string; \
141 if (NILP (BVAR (current_buffer, enable_multibyte_characters)) \
142 && ! print_escape_multibyte) \
143 specbind (Qprint_escape_multibyte, Qt); \
144 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)) \
145 && ! print_escape_nonascii) \
146 specbind (Qprint_escape_nonascii, Qt); \
147 if (print_buffer != 0) \
148 { \
149 string = make_string_from_bytes (print_buffer, \
150 print_buffer_pos, \
151 print_buffer_pos_byte); \
152 record_unwind_protect (print_unwind, string); \
153 } \
154 else \
155 { \
156 int new_size = 1000; \
157 print_buffer = xmalloc (new_size); \
158 print_buffer_size = new_size; \
159 free_print_buffer = 1; \
160 } \
161 print_buffer_pos = 0; \
162 print_buffer_pos_byte = 0; \
163 } \
164 if (EQ (printcharfun, Qt) && ! noninteractive) \
165 setup_echo_area_for_printing (multibyte);
166
167 #define PRINTFINISH \
168 if (NILP (printcharfun)) \
169 { \
170 if (print_buffer_pos != print_buffer_pos_byte \
171 && NILP (BVAR (current_buffer, enable_multibyte_characters))) \
172 { \
173 unsigned char *temp = alloca (print_buffer_pos + 1); \
174 copy_text ((unsigned char *) print_buffer, temp, \
175 print_buffer_pos_byte, 1, 0); \
176 insert_1_both ((char *) temp, print_buffer_pos, \
177 print_buffer_pos, 0, 1, 0); \
178 } \
179 else \
180 insert_1_both (print_buffer, print_buffer_pos, \
181 print_buffer_pos_byte, 0, 1, 0); \
182 signal_after_change (PT - print_buffer_pos, 0, print_buffer_pos);\
183 } \
184 if (free_print_buffer) \
185 { \
186 xfree (print_buffer); \
187 print_buffer = 0; \
188 } \
189 unbind_to (specpdl_count, Qnil); \
190 if (MARKERP (original)) \
191 set_marker_both (original, Qnil, PT, PT_BYTE); \
192 if (old_point >= 0) \
193 SET_PT_BOTH (old_point + (old_point >= start_point \
194 ? PT - start_point : 0), \
195 old_point_byte + (old_point_byte >= start_point_byte \
196 ? PT_BYTE - start_point_byte : 0)); \
197 set_buffer_internal (old);
198
199 #define PRINTCHAR(ch) printchar (ch, printcharfun)
200
201 /* This is used to restore the saved contents of print_buffer
202 when there is a recursive call to print. */
203
204 static void
205 print_unwind (Lisp_Object saved_text)
206 {
207 memcpy (print_buffer, SDATA (saved_text), SCHARS (saved_text));
208 }
209
210
211 /* Print character CH using method FUN. FUN nil means print to
212 print_buffer. FUN t means print to echo area or stdout if
213 non-interactive. If FUN is neither nil nor t, call FUN with CH as
214 argument. */
215
216 static void
217 printchar (unsigned int ch, Lisp_Object fun)
218 {
219 if (!NILP (fun) && !EQ (fun, Qt))
220 call1 (fun, make_number (ch));
221 else
222 {
223 unsigned char str[MAX_MULTIBYTE_LENGTH];
224 int len = CHAR_STRING (ch, str);
225
226 QUIT;
227
228 if (NILP (fun))
229 {
230 ptrdiff_t incr = len - (print_buffer_size - print_buffer_pos_byte);
231 if (incr > 0)
232 print_buffer = xpalloc (print_buffer, &print_buffer_size,
233 incr, -1, 1);
234 memcpy (print_buffer + print_buffer_pos_byte, str, len);
235 print_buffer_pos += 1;
236 print_buffer_pos_byte += len;
237 }
238 else if (noninteractive)
239 {
240 fwrite (str, 1, len, stdout);
241 noninteractive_need_newline = 1;
242 }
243 else
244 {
245 bool multibyte_p
246 = !NILP (BVAR (current_buffer, enable_multibyte_characters));
247
248 setup_echo_area_for_printing (multibyte_p);
249 insert_char (ch);
250 message_dolog ((char *) str, len, 0, multibyte_p);
251 }
252 }
253 }
254
255
256 /* Output SIZE characters, SIZE_BYTE bytes from string PTR using
257 method PRINTCHARFUN. If SIZE < 0, use the string length of PTR for
258 both SIZE and SIZE_BYTE. PRINTCHARFUN nil means output to
259 print_buffer. PRINTCHARFUN t means output to the echo area or to
260 stdout if non-interactive. If neither nil nor t, call Lisp
261 function PRINTCHARFUN for each character printed. MULTIBYTE
262 non-zero means PTR contains multibyte characters.
263
264 In the case where PRINTCHARFUN is nil, it is safe for PTR to point
265 to data in a Lisp string. Otherwise that is not safe. */
266
267 static void
268 strout (const char *ptr, ptrdiff_t size, ptrdiff_t size_byte,
269 Lisp_Object printcharfun)
270 {
271 if (size < 0)
272 size_byte = size = strlen (ptr);
273
274 if (NILP (printcharfun))
275 {
276 ptrdiff_t incr = size_byte - (print_buffer_size - print_buffer_pos_byte);
277 if (incr > 0)
278 print_buffer = xpalloc (print_buffer, &print_buffer_size, incr, -1, 1);
279 memcpy (print_buffer + print_buffer_pos_byte, ptr, size_byte);
280 print_buffer_pos += size;
281 print_buffer_pos_byte += size_byte;
282 }
283 else if (noninteractive && EQ (printcharfun, Qt))
284 {
285 fwrite (ptr, 1, size_byte, stdout);
286 noninteractive_need_newline = 1;
287 }
288 else if (EQ (printcharfun, Qt))
289 {
290 /* Output to echo area. We're trying to avoid a little overhead
291 here, that's the reason we don't call printchar to do the
292 job. */
293 int i;
294 bool multibyte_p
295 = !NILP (BVAR (current_buffer, enable_multibyte_characters));
296
297 setup_echo_area_for_printing (multibyte_p);
298 message_dolog (ptr, size_byte, 0, multibyte_p);
299
300 if (size == size_byte)
301 {
302 for (i = 0; i < size; ++i)
303 insert_char ((unsigned char) *ptr++);
304 }
305 else
306 {
307 int len;
308 for (i = 0; i < size_byte; i += len)
309 {
310 int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i,
311 len);
312 insert_char (ch);
313 }
314 }
315 }
316 else
317 {
318 /* PRINTCHARFUN is a Lisp function. */
319 ptrdiff_t i = 0;
320
321 if (size == size_byte)
322 {
323 while (i < size_byte)
324 {
325 int ch = ptr[i++];
326 PRINTCHAR (ch);
327 }
328 }
329 else
330 {
331 while (i < size_byte)
332 {
333 /* Here, we must convert each multi-byte form to the
334 corresponding character code before handing it to
335 PRINTCHAR. */
336 int len;
337 int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i,
338 len);
339 PRINTCHAR (ch);
340 i += len;
341 }
342 }
343 }
344 }
345
346 /* Print the contents of a string STRING using PRINTCHARFUN.
347 It isn't safe to use strout in many cases,
348 because printing one char can relocate. */
349
350 static void
351 print_string (Lisp_Object string, Lisp_Object printcharfun)
352 {
353 if (EQ (printcharfun, Qt) || NILP (printcharfun))
354 {
355 ptrdiff_t chars;
356
357 if (print_escape_nonascii)
358 string = string_escape_byte8 (string);
359
360 if (STRING_MULTIBYTE (string))
361 chars = SCHARS (string);
362 else if (! print_escape_nonascii
363 && (EQ (printcharfun, Qt)
364 ? ! NILP (BVAR (&buffer_defaults, enable_multibyte_characters))
365 : ! NILP (BVAR (current_buffer, enable_multibyte_characters))))
366 {
367 /* If unibyte string STRING contains 8-bit codes, we must
368 convert STRING to a multibyte string containing the same
369 character codes. */
370 Lisp_Object newstr;
371 ptrdiff_t bytes;
372
373 chars = SBYTES (string);
374 bytes = count_size_as_multibyte (SDATA (string), chars);
375 if (chars < bytes)
376 {
377 newstr = make_uninit_multibyte_string (chars, bytes);
378 memcpy (SDATA (newstr), SDATA (string), chars);
379 str_to_multibyte (SDATA (newstr), bytes, chars);
380 string = newstr;
381 }
382 }
383 else
384 chars = SBYTES (string);
385
386 if (EQ (printcharfun, Qt))
387 {
388 /* Output to echo area. */
389 ptrdiff_t nbytes = SBYTES (string);
390
391 /* Copy the string contents so that relocation of STRING by
392 GC does not cause trouble. */
393 USE_SAFE_ALLOCA;
394 char *buffer = SAFE_ALLOCA (nbytes);
395 memcpy (buffer, SDATA (string), nbytes);
396
397 strout (buffer, chars, nbytes, printcharfun);
398
399 SAFE_FREE ();
400 }
401 else
402 /* No need to copy, since output to print_buffer can't GC. */
403 strout (SSDATA (string), chars, SBYTES (string), printcharfun);
404 }
405 else
406 {
407 /* Otherwise, string may be relocated by printing one char.
408 So re-fetch the string address for each character. */
409 ptrdiff_t i;
410 ptrdiff_t size = SCHARS (string);
411 ptrdiff_t size_byte = SBYTES (string);
412 struct gcpro gcpro1;
413 GCPRO1 (string);
414 if (size == size_byte)
415 for (i = 0; i < size; i++)
416 PRINTCHAR (SREF (string, i));
417 else
418 for (i = 0; i < size_byte; )
419 {
420 /* Here, we must convert each multi-byte form to the
421 corresponding character code before handing it to PRINTCHAR. */
422 int len;
423 int ch = STRING_CHAR_AND_LENGTH (SDATA (string) + i, len);
424 PRINTCHAR (ch);
425 i += len;
426 }
427 UNGCPRO;
428 }
429 }
430 \f
431 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
432 doc: /* Output character CHARACTER to stream PRINTCHARFUN.
433 PRINTCHARFUN defaults to the value of `standard-output' (which see). */)
434 (Lisp_Object character, Lisp_Object printcharfun)
435 {
436 PRINTDECLARE;
437
438 if (NILP (printcharfun))
439 printcharfun = Vstandard_output;
440 CHECK_NUMBER (character);
441 PRINTPREPARE;
442 PRINTCHAR (XINT (character));
443 PRINTFINISH;
444 return character;
445 }
446
447 /* Used from outside of print.c to print a block of SIZE
448 single-byte chars at DATA on the default output stream.
449 Do not use this on the contents of a Lisp string. */
450
451 void
452 write_string (const char *data, int size)
453 {
454 PRINTDECLARE;
455 Lisp_Object printcharfun;
456
457 printcharfun = Vstandard_output;
458
459 PRINTPREPARE;
460 strout (data, size, size, printcharfun);
461 PRINTFINISH;
462 }
463
464 /* Used to print a block of SIZE single-byte chars at DATA on a
465 specified stream PRINTCHARFUN.
466 Do not use this on the contents of a Lisp string. */
467
468 static void
469 write_string_1 (const char *data, int size, Lisp_Object printcharfun)
470 {
471 PRINTDECLARE;
472
473 PRINTPREPARE;
474 strout (data, size, size, printcharfun);
475 PRINTFINISH;
476 }
477
478
479 void
480 temp_output_buffer_setup (const char *bufname)
481 {
482 ptrdiff_t count = SPECPDL_INDEX ();
483 register struct buffer *old = current_buffer;
484 register Lisp_Object buf;
485
486 record_unwind_current_buffer ();
487
488 Fset_buffer (Fget_buffer_create (build_string (bufname)));
489
490 Fkill_all_local_variables ();
491 delete_all_overlays (current_buffer);
492 bset_directory (current_buffer, BVAR (old, directory));
493 bset_read_only (current_buffer, Qnil);
494 bset_filename (current_buffer, Qnil);
495 bset_undo_list (current_buffer, Qt);
496 eassert (current_buffer->overlays_before == NULL);
497 eassert (current_buffer->overlays_after == NULL);
498 bset_enable_multibyte_characters
499 (current_buffer, BVAR (&buffer_defaults, enable_multibyte_characters));
500 specbind (Qinhibit_read_only, Qt);
501 specbind (Qinhibit_modification_hooks, Qt);
502 Ferase_buffer ();
503 XSETBUFFER (buf, current_buffer);
504
505 Frun_hooks (1, &Qtemp_buffer_setup_hook);
506
507 unbind_to (count, Qnil);
508
509 specbind (Qstandard_output, buf);
510 }
511 \f
512 static void print (Lisp_Object, Lisp_Object, bool);
513 static void print_preprocess (Lisp_Object);
514 static void print_preprocess_string (INTERVAL, Lisp_Object);
515 static void print_object (Lisp_Object, Lisp_Object, bool);
516
517 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
518 doc: /* Output a newline to stream PRINTCHARFUN.
519 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used. */)
520 (Lisp_Object printcharfun)
521 {
522 PRINTDECLARE;
523
524 if (NILP (printcharfun))
525 printcharfun = Vstandard_output;
526 PRINTPREPARE;
527 PRINTCHAR ('\n');
528 PRINTFINISH;
529 return Qt;
530 }
531
532 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
533 doc: /* Output the printed representation of OBJECT, any Lisp object.
534 Quoting characters are printed when needed to make output that `read'
535 can handle, whenever this is possible. For complex objects, the behavior
536 is controlled by `print-level' and `print-length', which see.
537
538 OBJECT is any of the Lisp data types: a number, a string, a symbol,
539 a list, a buffer, a window, a frame, etc.
540
541 A printed representation of an object is text which describes that object.
542
543 Optional argument PRINTCHARFUN is the output stream, which can be one
544 of these:
545
546 - a buffer, in which case output is inserted into that buffer at point;
547 - a marker, in which case output is inserted at marker's position;
548 - a function, in which case that function is called once for each
549 character of OBJECT's printed representation;
550 - a symbol, in which case that symbol's function definition is called; or
551 - t, in which case the output is displayed in the echo area.
552
553 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
554 is used instead. */)
555 (Lisp_Object object, Lisp_Object printcharfun)
556 {
557 PRINTDECLARE;
558
559 if (NILP (printcharfun))
560 printcharfun = Vstandard_output;
561 PRINTPREPARE;
562 print (object, printcharfun, 1);
563 PRINTFINISH;
564 return object;
565 }
566
567 /* a buffer which is used to hold output being built by prin1-to-string */
568 Lisp_Object Vprin1_to_string_buffer;
569
570 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
571 doc: /* Return a string containing the printed representation of OBJECT.
572 OBJECT can be any Lisp object. This function outputs quoting characters
573 when necessary to make output that `read' can handle, whenever possible,
574 unless the optional second argument NOESCAPE is non-nil. For complex objects,
575 the behavior is controlled by `print-level' and `print-length', which see.
576
577 OBJECT is any of the Lisp data types: a number, a string, a symbol,
578 a list, a buffer, a window, a frame, etc.
579
580 A printed representation of an object is text which describes that object. */)
581 (Lisp_Object object, Lisp_Object noescape)
582 {
583 Lisp_Object printcharfun;
584 bool prev_abort_on_gc;
585 /* struct gcpro gcpro1, gcpro2; */
586 Lisp_Object save_deactivate_mark;
587 ptrdiff_t count = SPECPDL_INDEX ();
588 struct buffer *previous;
589
590 specbind (Qinhibit_modification_hooks, Qt);
591
592 {
593 PRINTDECLARE;
594
595 /* Save and restore this--we are altering a buffer
596 but we don't want to deactivate the mark just for that.
597 No need for specbind, since errors deactivate the mark. */
598 save_deactivate_mark = Vdeactivate_mark;
599 /* GCPRO2 (object, save_deactivate_mark); */
600 prev_abort_on_gc = abort_on_gc;
601 abort_on_gc = 1;
602
603 printcharfun = Vprin1_to_string_buffer;
604 PRINTPREPARE;
605 print (object, printcharfun, NILP (noescape));
606 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINISH */
607 PRINTFINISH;
608 }
609
610 previous = current_buffer;
611 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
612 object = Fbuffer_string ();
613 if (SBYTES (object) == SCHARS (object))
614 STRING_SET_UNIBYTE (object);
615
616 /* Note that this won't make prepare_to_modify_buffer call
617 ask-user-about-supersession-threat because this buffer
618 does not visit a file. */
619 Ferase_buffer ();
620 set_buffer_internal (previous);
621
622 Vdeactivate_mark = save_deactivate_mark;
623 /* UNGCPRO; */
624
625 abort_on_gc = prev_abort_on_gc;
626 return unbind_to (count, object);
627 }
628
629 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
630 doc: /* Output the printed representation of OBJECT, any Lisp object.
631 No quoting characters are used; no delimiters are printed around
632 the contents of strings.
633
634 OBJECT is any of the Lisp data types: a number, a string, a symbol,
635 a list, a buffer, a window, a frame, etc.
636
637 A printed representation of an object is text which describes that object.
638
639 Optional argument PRINTCHARFUN is the output stream, which can be one
640 of these:
641
642 - a buffer, in which case output is inserted into that buffer at point;
643 - a marker, in which case output is inserted at marker's position;
644 - a function, in which case that function is called once for each
645 character of OBJECT's printed representation;
646 - a symbol, in which case that symbol's function definition is called; or
647 - t, in which case the output is displayed in the echo area.
648
649 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
650 is used instead. */)
651 (Lisp_Object object, Lisp_Object printcharfun)
652 {
653 PRINTDECLARE;
654
655 if (NILP (printcharfun))
656 printcharfun = Vstandard_output;
657 PRINTPREPARE;
658 print (object, printcharfun, 0);
659 PRINTFINISH;
660 return object;
661 }
662
663 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
664 doc: /* Output the printed representation of OBJECT, with newlines around it.
665 Quoting characters are printed when needed to make output that `read'
666 can handle, whenever this is possible. For complex objects, the behavior
667 is controlled by `print-level' and `print-length', which see.
668
669 OBJECT is any of the Lisp data types: a number, a string, a symbol,
670 a list, a buffer, a window, a frame, etc.
671
672 A printed representation of an object is text which describes that object.
673
674 Optional argument PRINTCHARFUN is the output stream, which can be one
675 of these:
676
677 - a buffer, in which case output is inserted into that buffer at point;
678 - a marker, in which case output is inserted at marker's position;
679 - a function, in which case that function is called once for each
680 character of OBJECT's printed representation;
681 - a symbol, in which case that symbol's function definition is called; or
682 - t, in which case the output is displayed in the echo area.
683
684 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
685 is used instead. */)
686 (Lisp_Object object, Lisp_Object printcharfun)
687 {
688 PRINTDECLARE;
689 struct gcpro gcpro1;
690
691 if (NILP (printcharfun))
692 printcharfun = Vstandard_output;
693 GCPRO1 (object);
694 PRINTPREPARE;
695 PRINTCHAR ('\n');
696 print (object, printcharfun, 1);
697 PRINTCHAR ('\n');
698 PRINTFINISH;
699 UNGCPRO;
700 return object;
701 }
702
703 /* The subroutine object for external-debugging-output is kept here
704 for the convenience of the debugger. */
705 Lisp_Object Qexternal_debugging_output;
706
707 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
708 doc: /* Write CHARACTER to stderr.
709 You can call print while debugging emacs, and pass it this function
710 to make it write to the debugging output. */)
711 (Lisp_Object character)
712 {
713 CHECK_NUMBER (character);
714 putc (XINT (character) & 0xFF, stderr);
715
716 #ifdef WINDOWSNT
717 /* Send the output to a debugger (nothing happens if there isn't one). */
718 if (print_output_debug_flag)
719 {
720 char buf[2] = {(char) XINT (character), '\0'};
721 OutputDebugString (buf);
722 }
723 #endif
724
725 return character;
726 }
727
728 /* This function is never called. Its purpose is to prevent
729 print_output_debug_flag from being optimized away. */
730
731 extern void debug_output_compilation_hack (bool) EXTERNALLY_VISIBLE;
732 void
733 debug_output_compilation_hack (bool x)
734 {
735 print_output_debug_flag = x;
736 }
737
738 #if defined (GNU_LINUX)
739
740 /* This functionality is not vitally important in general, so we rely on
741 non-portable ability to use stderr as lvalue. */
742
743 #define WITH_REDIRECT_DEBUGGING_OUTPUT 1
744
745 static FILE *initial_stderr_stream = NULL;
746
747 DEFUN ("redirect-debugging-output", Fredirect_debugging_output, Sredirect_debugging_output,
748 1, 2,
749 "FDebug output file: \nP",
750 doc: /* Redirect debugging output (stderr stream) to file FILE.
751 If FILE is nil, reset target to the initial stderr stream.
752 Optional arg APPEND non-nil (interactively, with prefix arg) means
753 append to existing target file. */)
754 (Lisp_Object file, Lisp_Object append)
755 {
756 if (initial_stderr_stream != NULL)
757 {
758 block_input ();
759 fclose (stderr);
760 unblock_input ();
761 }
762 stderr = initial_stderr_stream;
763 initial_stderr_stream = NULL;
764
765 if (STRINGP (file))
766 {
767 file = Fexpand_file_name (file, Qnil);
768 initial_stderr_stream = stderr;
769 stderr = emacs_fopen (SSDATA (file), NILP (append) ? "w" : "a");
770 if (stderr == NULL)
771 {
772 stderr = initial_stderr_stream;
773 initial_stderr_stream = NULL;
774 report_file_error ("Cannot open debugging output stream", file);
775 }
776 }
777 return Qnil;
778 }
779 #endif /* GNU_LINUX */
780
781
782 /* This is the interface for debugging printing. */
783
784 void
785 debug_print (Lisp_Object arg)
786 {
787 Fprin1 (arg, Qexternal_debugging_output);
788 fprintf (stderr, "\r\n");
789 }
790
791 void safe_debug_print (Lisp_Object) EXTERNALLY_VISIBLE;
792 void
793 safe_debug_print (Lisp_Object arg)
794 {
795 int valid = valid_lisp_object_p (arg);
796
797 if (valid > 0)
798 debug_print (arg);
799 else
800 fprintf (stderr, "#<%s_LISP_OBJECT 0x%08"pI"x>\r\n",
801 !valid ? "INVALID" : "SOME",
802 XLI (arg));
803 }
804
805 \f
806 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
807 1, 1, 0,
808 doc: /* Convert an error value (ERROR-SYMBOL . DATA) to an error message.
809 See Info anchor `(elisp)Definition of signal' for some details on how this
810 error message is constructed. */)
811 (Lisp_Object obj)
812 {
813 struct buffer *old = current_buffer;
814 Lisp_Object value;
815 struct gcpro gcpro1;
816
817 /* If OBJ is (error STRING), just return STRING.
818 That is not only faster, it also avoids the need to allocate
819 space here when the error is due to memory full. */
820 if (CONSP (obj) && EQ (XCAR (obj), Qerror)
821 && CONSP (XCDR (obj))
822 && STRINGP (XCAR (XCDR (obj)))
823 && NILP (XCDR (XCDR (obj))))
824 return XCAR (XCDR (obj));
825
826 print_error_message (obj, Vprin1_to_string_buffer, 0, Qnil);
827
828 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
829 value = Fbuffer_string ();
830
831 GCPRO1 (value);
832 Ferase_buffer ();
833 set_buffer_internal (old);
834 UNGCPRO;
835
836 return value;
837 }
838
839 /* Print an error message for the error DATA onto Lisp output stream
840 STREAM (suitable for the print functions).
841 CONTEXT is a C string describing the context of the error.
842 CALLER is the Lisp function inside which the error was signaled. */
843
844 void
845 print_error_message (Lisp_Object data, Lisp_Object stream, const char *context,
846 Lisp_Object caller)
847 {
848 Lisp_Object errname, errmsg, file_error, tail;
849 struct gcpro gcpro1;
850
851 if (context != 0)
852 write_string_1 (context, -1, stream);
853
854 /* If we know from where the error was signaled, show it in
855 *Messages*. */
856 if (!NILP (caller) && SYMBOLP (caller))
857 {
858 Lisp_Object cname = SYMBOL_NAME (caller);
859 ptrdiff_t cnamelen = SBYTES (cname);
860 USE_SAFE_ALLOCA;
861 char *name = SAFE_ALLOCA (cnamelen);
862 memcpy (name, SDATA (cname), cnamelen);
863 message_dolog (name, cnamelen, 0, 0);
864 message_dolog (": ", 2, 0, 0);
865 SAFE_FREE ();
866 }
867
868 errname = Fcar (data);
869
870 if (EQ (errname, Qerror))
871 {
872 data = Fcdr (data);
873 if (!CONSP (data))
874 data = Qnil;
875 errmsg = Fcar (data);
876 file_error = Qnil;
877 }
878 else
879 {
880 Lisp_Object error_conditions = Fget (errname, Qerror_conditions);
881 errmsg = Fget (errname, Qerror_message);
882 file_error = Fmemq (Qfile_error, error_conditions);
883 }
884
885 /* Print an error message including the data items. */
886
887 tail = Fcdr_safe (data);
888 GCPRO1 (tail);
889
890 /* For file-error, make error message by concatenating
891 all the data items. They are all strings. */
892 if (!NILP (file_error) && CONSP (tail))
893 errmsg = XCAR (tail), tail = XCDR (tail);
894
895 {
896 const char *sep = ": ";
897
898 if (!STRINGP (errmsg))
899 write_string_1 ("peculiar error", -1, stream);
900 else if (SCHARS (errmsg))
901 Fprinc (errmsg, stream);
902 else
903 sep = NULL;
904
905 for (; CONSP (tail); tail = XCDR (tail), sep = ", ")
906 {
907 Lisp_Object obj;
908
909 if (sep)
910 write_string_1 (sep, 2, stream);
911 obj = XCAR (tail);
912 if (!NILP (file_error)
913 || EQ (errname, Qend_of_file) || EQ (errname, Quser_error))
914 Fprinc (obj, stream);
915 else
916 Fprin1 (obj, stream);
917 }
918 }
919
920 UNGCPRO;
921 }
922
923
924 \f
925 /*
926 * The buffer should be at least as large as the max string size of the
927 * largest float, printed in the biggest notation. This is undoubtedly
928 * 20d float_output_format, with the negative of the C-constant "HUGE"
929 * from <math.h>.
930 *
931 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
932 *
933 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
934 * case of -1e307 in 20d float_output_format. What is one to do (short of
935 * re-writing _doprnt to be more sane)?
936 * -wsr
937 * Given the above, the buffer must be least FLOAT_TO_STRING_BUFSIZE bytes.
938 */
939
940 int
941 float_to_string (char *buf, double data)
942 {
943 char *cp;
944 int width;
945 int len;
946
947 /* Check for plus infinity in a way that won't lose
948 if there is no plus infinity. */
949 if (data == data / 2 && data > 1.0)
950 {
951 static char const infinity_string[] = "1.0e+INF";
952 strcpy (buf, infinity_string);
953 return sizeof infinity_string - 1;
954 }
955 /* Likewise for minus infinity. */
956 if (data == data / 2 && data < -1.0)
957 {
958 static char const minus_infinity_string[] = "-1.0e+INF";
959 strcpy (buf, minus_infinity_string);
960 return sizeof minus_infinity_string - 1;
961 }
962 /* Check for NaN in a way that won't fail if there are no NaNs. */
963 if (! (data * 0.0 >= 0.0))
964 {
965 /* Prepend "-" if the NaN's sign bit is negative.
966 The sign bit of a double is the bit that is 1 in -0.0. */
967 static char const NaN_string[] = "0.0e+NaN";
968 int i;
969 union { double d; char c[sizeof (double)]; } u_data, u_minus_zero;
970 bool negative = 0;
971 u_data.d = data;
972 u_minus_zero.d = - 0.0;
973 for (i = 0; i < sizeof (double); i++)
974 if (u_data.c[i] & u_minus_zero.c[i])
975 {
976 *buf = '-';
977 negative = 1;
978 break;
979 }
980
981 strcpy (buf + negative, NaN_string);
982 return negative + sizeof NaN_string - 1;
983 }
984
985 if (NILP (Vfloat_output_format)
986 || !STRINGP (Vfloat_output_format))
987 lose:
988 {
989 /* Generate the fewest number of digits that represent the
990 floating point value without losing information. */
991 len = dtoastr (buf, FLOAT_TO_STRING_BUFSIZE - 2, 0, 0, data);
992 /* The decimal point must be printed, or the byte compiler can
993 get confused (Bug#8033). */
994 width = 1;
995 }
996 else /* oink oink */
997 {
998 /* Check that the spec we have is fully valid.
999 This means not only valid for printf,
1000 but meant for floats, and reasonable. */
1001 cp = SSDATA (Vfloat_output_format);
1002
1003 if (cp[0] != '%')
1004 goto lose;
1005 if (cp[1] != '.')
1006 goto lose;
1007
1008 cp += 2;
1009
1010 /* Check the width specification. */
1011 width = -1;
1012 if ('0' <= *cp && *cp <= '9')
1013 {
1014 width = 0;
1015 do
1016 {
1017 width = (width * 10) + (*cp++ - '0');
1018 if (DBL_DIG < width)
1019 goto lose;
1020 }
1021 while (*cp >= '0' && *cp <= '9');
1022
1023 /* A precision of zero is valid only for %f. */
1024 if (width == 0 && *cp != 'f')
1025 goto lose;
1026 }
1027
1028 if (*cp != 'e' && *cp != 'f' && *cp != 'g')
1029 goto lose;
1030
1031 if (cp[1] != 0)
1032 goto lose;
1033
1034 len = sprintf (buf, SSDATA (Vfloat_output_format), data);
1035 }
1036
1037 /* Make sure there is a decimal point with digit after, or an
1038 exponent, so that the value is readable as a float. But don't do
1039 this with "%.0f"; it's valid for that not to produce a decimal
1040 point. Note that width can be 0 only for %.0f. */
1041 if (width != 0)
1042 {
1043 for (cp = buf; *cp; cp++)
1044 if ((*cp < '0' || *cp > '9') && *cp != '-')
1045 break;
1046
1047 if (*cp == '.' && cp[1] == 0)
1048 {
1049 cp[1] = '0';
1050 cp[2] = 0;
1051 len++;
1052 }
1053 else if (*cp == 0)
1054 {
1055 *cp++ = '.';
1056 *cp++ = '0';
1057 *cp++ = 0;
1058 len += 2;
1059 }
1060 }
1061
1062 return len;
1063 }
1064
1065 \f
1066 static void
1067 print (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag)
1068 {
1069 new_backquote_output = 0;
1070
1071 /* Reset print_number_index and Vprint_number_table only when
1072 the variable Vprint_continuous_numbering is nil. Otherwise,
1073 the values of these variables will be kept between several
1074 print functions. */
1075 if (NILP (Vprint_continuous_numbering)
1076 || NILP (Vprint_number_table))
1077 {
1078 print_number_index = 0;
1079 Vprint_number_table = Qnil;
1080 }
1081
1082 /* Construct Vprint_number_table for print-gensym and print-circle. */
1083 if (!NILP (Vprint_gensym) || !NILP (Vprint_circle))
1084 {
1085 /* Construct Vprint_number_table.
1086 This increments print_number_index for the objects added. */
1087 print_depth = 0;
1088 print_preprocess (obj);
1089
1090 if (HASH_TABLE_P (Vprint_number_table))
1091 { /* Remove unnecessary objects, which appear only once in OBJ;
1092 that is, whose status is Qt. */
1093 struct Lisp_Hash_Table *h = XHASH_TABLE (Vprint_number_table);
1094 ptrdiff_t i;
1095
1096 for (i = 0; i < HASH_TABLE_SIZE (h); ++i)
1097 if (!NILP (HASH_HASH (h, i))
1098 && EQ (HASH_VALUE (h, i), Qt))
1099 Fremhash (HASH_KEY (h, i), Vprint_number_table);
1100 }
1101 }
1102
1103 print_depth = 0;
1104 print_object (obj, printcharfun, escapeflag);
1105 }
1106
1107 #define PRINT_CIRCLE_CANDIDATE_P(obj) \
1108 (STRINGP (obj) || CONSP (obj) \
1109 || (VECTORLIKEP (obj) \
1110 && (VECTORP (obj) || COMPILEDP (obj) \
1111 || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj) \
1112 || HASH_TABLE_P (obj) || FONTP (obj))) \
1113 || (! NILP (Vprint_gensym) \
1114 && SYMBOLP (obj) \
1115 && !SYMBOL_INTERNED_P (obj)))
1116
1117 /* Construct Vprint_number_table according to the structure of OBJ.
1118 OBJ itself and all its elements will be added to Vprint_number_table
1119 recursively if it is a list, vector, compiled function, char-table,
1120 string (its text properties will be traced), or a symbol that has
1121 no obarray (this is for the print-gensym feature).
1122 The status fields of Vprint_number_table mean whether each object appears
1123 more than once in OBJ: Qnil at the first time, and Qt after that . */
1124 static void
1125 print_preprocess (Lisp_Object obj)
1126 {
1127 int i;
1128 ptrdiff_t size;
1129 int loop_count = 0;
1130 Lisp_Object halftail;
1131
1132 /* Avoid infinite recursion for circular nested structure
1133 in the case where Vprint_circle is nil. */
1134 if (NILP (Vprint_circle))
1135 {
1136 /* Give up if we go so deep that print_object will get an error. */
1137 /* See similar code in print_object. */
1138 if (print_depth >= PRINT_CIRCLE)
1139 error ("Apparently circular structure being printed");
1140
1141 for (i = 0; i < print_depth; i++)
1142 if (EQ (obj, being_printed[i]))
1143 return;
1144 being_printed[print_depth] = obj;
1145 }
1146
1147 print_depth++;
1148 halftail = obj;
1149
1150 loop:
1151 if (PRINT_CIRCLE_CANDIDATE_P (obj))
1152 {
1153 if (!HASH_TABLE_P (Vprint_number_table))
1154 {
1155 Lisp_Object args[2];
1156 args[0] = QCtest;
1157 args[1] = Qeq;
1158 Vprint_number_table = Fmake_hash_table (2, args);
1159 }
1160
1161 /* In case print-circle is nil and print-gensym is t,
1162 add OBJ to Vprint_number_table only when OBJ is a symbol. */
1163 if (! NILP (Vprint_circle) || SYMBOLP (obj))
1164 {
1165 Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil);
1166 if (!NILP (num)
1167 /* If Vprint_continuous_numbering is non-nil and OBJ is a gensym,
1168 always print the gensym with a number. This is a special for
1169 the lisp function byte-compile-output-docform. */
1170 || (!NILP (Vprint_continuous_numbering)
1171 && SYMBOLP (obj)
1172 && !SYMBOL_INTERNED_P (obj)))
1173 { /* OBJ appears more than once. Let's remember that. */
1174 if (!INTEGERP (num))
1175 {
1176 print_number_index++;
1177 /* Negative number indicates it hasn't been printed yet. */
1178 Fputhash (obj, make_number (- print_number_index),
1179 Vprint_number_table);
1180 }
1181 print_depth--;
1182 return;
1183 }
1184 else
1185 /* OBJ is not yet recorded. Let's add to the table. */
1186 Fputhash (obj, Qt, Vprint_number_table);
1187 }
1188
1189 switch (XTYPE (obj))
1190 {
1191 case Lisp_String:
1192 /* A string may have text properties, which can be circular. */
1193 traverse_intervals_noorder (string_intervals (obj),
1194 print_preprocess_string, Qnil);
1195 break;
1196
1197 case Lisp_Cons:
1198 /* Use HALFTAIL and LOOP_COUNT to detect circular lists,
1199 just as in print_object. */
1200 if (loop_count && EQ (obj, halftail))
1201 break;
1202 print_preprocess (XCAR (obj));
1203 obj = XCDR (obj);
1204 loop_count++;
1205 if (!(loop_count & 1))
1206 halftail = XCDR (halftail);
1207 goto loop;
1208
1209 case Lisp_Vectorlike:
1210 size = ASIZE (obj);
1211 if (size & PSEUDOVECTOR_FLAG)
1212 size &= PSEUDOVECTOR_SIZE_MASK;
1213 for (i = 0; i < size; i++)
1214 print_preprocess (AREF (obj, i));
1215 if (HASH_TABLE_P (obj))
1216 { /* For hash tables, the key_and_value slot is past
1217 `size' because it needs to be marked specially in case
1218 the table is weak. */
1219 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
1220 print_preprocess (h->key_and_value);
1221 }
1222 break;
1223
1224 default:
1225 break;
1226 }
1227 }
1228 print_depth--;
1229 }
1230
1231 static void
1232 print_preprocess_string (INTERVAL interval, Lisp_Object arg)
1233 {
1234 print_preprocess (interval->plist);
1235 }
1236
1237 static void print_check_string_charset_prop (INTERVAL interval, Lisp_Object string);
1238
1239 #define PRINT_STRING_NON_CHARSET_FOUND 1
1240 #define PRINT_STRING_UNSAFE_CHARSET_FOUND 2
1241
1242 /* Bitwise or of the above macros. */
1243 static int print_check_string_result;
1244
1245 static void
1246 print_check_string_charset_prop (INTERVAL interval, Lisp_Object string)
1247 {
1248 Lisp_Object val;
1249
1250 if (NILP (interval->plist)
1251 || (print_check_string_result == (PRINT_STRING_NON_CHARSET_FOUND
1252 | PRINT_STRING_UNSAFE_CHARSET_FOUND)))
1253 return;
1254 for (val = interval->plist; CONSP (val) && ! EQ (XCAR (val), Qcharset);
1255 val = XCDR (XCDR (val)));
1256 if (! CONSP (val))
1257 {
1258 print_check_string_result |= PRINT_STRING_NON_CHARSET_FOUND;
1259 return;
1260 }
1261 if (! (print_check_string_result & PRINT_STRING_NON_CHARSET_FOUND))
1262 {
1263 if (! EQ (val, interval->plist)
1264 || CONSP (XCDR (XCDR (val))))
1265 print_check_string_result |= PRINT_STRING_NON_CHARSET_FOUND;
1266 }
1267 if (NILP (Vprint_charset_text_property)
1268 || ! (print_check_string_result & PRINT_STRING_UNSAFE_CHARSET_FOUND))
1269 {
1270 int i, c;
1271 ptrdiff_t charpos = interval->position;
1272 ptrdiff_t bytepos = string_char_to_byte (string, charpos);
1273 Lisp_Object charset;
1274
1275 charset = XCAR (XCDR (val));
1276 for (i = 0; i < LENGTH (interval); i++)
1277 {
1278 FETCH_STRING_CHAR_ADVANCE (c, string, charpos, bytepos);
1279 if (! ASCII_CHAR_P (c)
1280 && ! EQ (CHARSET_NAME (CHAR_CHARSET (c)), charset))
1281 {
1282 print_check_string_result |= PRINT_STRING_UNSAFE_CHARSET_FOUND;
1283 break;
1284 }
1285 }
1286 }
1287 }
1288
1289 /* The value is (charset . nil). */
1290 static Lisp_Object print_prune_charset_plist;
1291
1292 static Lisp_Object
1293 print_prune_string_charset (Lisp_Object string)
1294 {
1295 print_check_string_result = 0;
1296 traverse_intervals (string_intervals (string), 0,
1297 print_check_string_charset_prop, string);
1298 if (! (print_check_string_result & PRINT_STRING_UNSAFE_CHARSET_FOUND))
1299 {
1300 string = Fcopy_sequence (string);
1301 if (print_check_string_result & PRINT_STRING_NON_CHARSET_FOUND)
1302 {
1303 if (NILP (print_prune_charset_plist))
1304 print_prune_charset_plist = list1 (Qcharset);
1305 Fremove_text_properties (make_number (0),
1306 make_number (SCHARS (string)),
1307 print_prune_charset_plist, string);
1308 }
1309 else
1310 Fset_text_properties (make_number (0), make_number (SCHARS (string)),
1311 Qnil, string);
1312 }
1313 return string;
1314 }
1315
1316 static void
1317 print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag)
1318 {
1319 char buf[max (sizeof "from..to..in " + 2 * INT_STRLEN_BOUND (EMACS_INT),
1320 max (sizeof " . #" + INT_STRLEN_BOUND (printmax_t),
1321 40))];
1322
1323 QUIT;
1324
1325 /* Detect circularities and truncate them. */
1326 if (NILP (Vprint_circle))
1327 {
1328 /* Simple but incomplete way. */
1329 int i;
1330
1331 /* See similar code in print_preprocess. */
1332 if (print_depth >= PRINT_CIRCLE)
1333 error ("Apparently circular structure being printed");
1334
1335 for (i = 0; i < print_depth; i++)
1336 if (EQ (obj, being_printed[i]))
1337 {
1338 int len = sprintf (buf, "#%d", i);
1339 strout (buf, len, len, printcharfun);
1340 return;
1341 }
1342 being_printed[print_depth] = obj;
1343 }
1344 else if (PRINT_CIRCLE_CANDIDATE_P (obj))
1345 {
1346 /* With the print-circle feature. */
1347 Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil);
1348 if (INTEGERP (num))
1349 {
1350 EMACS_INT n = XINT (num);
1351 if (n < 0)
1352 { /* Add a prefix #n= if OBJ has not yet been printed;
1353 that is, its status field is nil. */
1354 int len = sprintf (buf, "#%"pI"d=", -n);
1355 strout (buf, len, len, printcharfun);
1356 /* OBJ is going to be printed. Remember that fact. */
1357 Fputhash (obj, make_number (- n), Vprint_number_table);
1358 }
1359 else
1360 {
1361 /* Just print #n# if OBJ has already been printed. */
1362 int len = sprintf (buf, "#%"pI"d#", n);
1363 strout (buf, len, len, printcharfun);
1364 return;
1365 }
1366 }
1367 }
1368
1369 print_depth++;
1370
1371 switch (XTYPE (obj))
1372 {
1373 case_Lisp_Int:
1374 {
1375 int len = sprintf (buf, "%"pI"d", XINT (obj));
1376 strout (buf, len, len, printcharfun);
1377 }
1378 break;
1379
1380 case Lisp_Float:
1381 {
1382 char pigbuf[FLOAT_TO_STRING_BUFSIZE];
1383 int len = float_to_string (pigbuf, XFLOAT_DATA (obj));
1384 strout (pigbuf, len, len, printcharfun);
1385 }
1386 break;
1387
1388 case Lisp_String:
1389 if (!escapeflag)
1390 print_string (obj, printcharfun);
1391 else
1392 {
1393 register ptrdiff_t i_byte;
1394 struct gcpro gcpro1;
1395 unsigned char *str;
1396 ptrdiff_t size_byte;
1397 /* 1 means we must ensure that the next character we output
1398 cannot be taken as part of a hex character escape. */
1399 bool need_nonhex = 0;
1400 bool multibyte = STRING_MULTIBYTE (obj);
1401
1402 GCPRO1 (obj);
1403
1404 if (! EQ (Vprint_charset_text_property, Qt))
1405 obj = print_prune_string_charset (obj);
1406
1407 if (string_intervals (obj))
1408 {
1409 PRINTCHAR ('#');
1410 PRINTCHAR ('(');
1411 }
1412
1413 PRINTCHAR ('\"');
1414 str = SDATA (obj);
1415 size_byte = SBYTES (obj);
1416
1417 for (i_byte = 0; i_byte < size_byte;)
1418 {
1419 /* Here, we must convert each multi-byte form to the
1420 corresponding character code before handing it to PRINTCHAR. */
1421 int len;
1422 int c;
1423
1424 if (multibyte)
1425 {
1426 c = STRING_CHAR_AND_LENGTH (str + i_byte, len);
1427 i_byte += len;
1428 }
1429 else
1430 c = str[i_byte++];
1431
1432 QUIT;
1433
1434 if (c == '\n' && print_escape_newlines)
1435 {
1436 PRINTCHAR ('\\');
1437 PRINTCHAR ('n');
1438 }
1439 else if (c == '\f' && print_escape_newlines)
1440 {
1441 PRINTCHAR ('\\');
1442 PRINTCHAR ('f');
1443 }
1444 else if (multibyte
1445 && (CHAR_BYTE8_P (c)
1446 || (! ASCII_CHAR_P (c) && print_escape_multibyte)))
1447 {
1448 /* When multibyte is disabled,
1449 print multibyte string chars using hex escapes.
1450 For a char code that could be in a unibyte string,
1451 when found in a multibyte string, always use a hex escape
1452 so it reads back as multibyte. */
1453 char outbuf[50];
1454 int len;
1455
1456 if (CHAR_BYTE8_P (c))
1457 len = sprintf (outbuf, "\\%03o", CHAR_TO_BYTE8 (c));
1458 else
1459 {
1460 len = sprintf (outbuf, "\\x%04x", c);
1461 need_nonhex = 1;
1462 }
1463 strout (outbuf, len, len, printcharfun);
1464 }
1465 else if (! multibyte
1466 && SINGLE_BYTE_CHAR_P (c) && ! ASCII_BYTE_P (c)
1467 && print_escape_nonascii)
1468 {
1469 /* When printing in a multibyte buffer
1470 or when explicitly requested,
1471 print single-byte non-ASCII string chars
1472 using octal escapes. */
1473 char outbuf[5];
1474 int len = sprintf (outbuf, "\\%03o", c);
1475 strout (outbuf, len, len, printcharfun);
1476 }
1477 else
1478 {
1479 /* If we just had a hex escape, and this character
1480 could be taken as part of it,
1481 output `\ ' to prevent that. */
1482 if (need_nonhex)
1483 {
1484 need_nonhex = 0;
1485 if ((c >= 'a' && c <= 'f')
1486 || (c >= 'A' && c <= 'F')
1487 || (c >= '0' && c <= '9'))
1488 strout ("\\ ", -1, -1, printcharfun);
1489 }
1490
1491 if (c == '\"' || c == '\\')
1492 PRINTCHAR ('\\');
1493 PRINTCHAR (c);
1494 }
1495 }
1496 PRINTCHAR ('\"');
1497
1498 if (string_intervals (obj))
1499 {
1500 traverse_intervals (string_intervals (obj),
1501 0, print_interval, printcharfun);
1502 PRINTCHAR (')');
1503 }
1504
1505 UNGCPRO;
1506 }
1507 break;
1508
1509 case Lisp_Symbol:
1510 {
1511 bool confusing;
1512 unsigned char *p = SDATA (SYMBOL_NAME (obj));
1513 unsigned char *end = p + SBYTES (SYMBOL_NAME (obj));
1514 int c;
1515 ptrdiff_t i, i_byte;
1516 ptrdiff_t size_byte;
1517 Lisp_Object name;
1518
1519 name = SYMBOL_NAME (obj);
1520
1521 if (p != end && (*p == '-' || *p == '+')) p++;
1522 if (p == end)
1523 confusing = 0;
1524 /* If symbol name begins with a digit, and ends with a digit,
1525 and contains nothing but digits and `e', it could be treated
1526 as a number. So set CONFUSING.
1527
1528 Symbols that contain periods could also be taken as numbers,
1529 but periods are always escaped, so we don't have to worry
1530 about them here. */
1531 else if (*p >= '0' && *p <= '9'
1532 && end[-1] >= '0' && end[-1] <= '9')
1533 {
1534 while (p != end && ((*p >= '0' && *p <= '9')
1535 /* Needed for \2e10. */
1536 || *p == 'e' || *p == 'E'))
1537 p++;
1538 confusing = (end == p);
1539 }
1540 else
1541 confusing = 0;
1542
1543 size_byte = SBYTES (name);
1544
1545 if (! NILP (Vprint_gensym) && !SYMBOL_INTERNED_P (obj))
1546 {
1547 PRINTCHAR ('#');
1548 PRINTCHAR (':');
1549 }
1550 else if (size_byte == 0)
1551 {
1552 PRINTCHAR ('#');
1553 PRINTCHAR ('#');
1554 break;
1555 }
1556
1557 for (i = 0, i_byte = 0; i_byte < size_byte;)
1558 {
1559 /* Here, we must convert each multi-byte form to the
1560 corresponding character code before handing it to PRINTCHAR. */
1561 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1562 QUIT;
1563
1564 if (escapeflag)
1565 {
1566 if (c == '\"' || c == '\\' || c == '\''
1567 || c == ';' || c == '#' || c == '(' || c == ')'
1568 || c == ',' || c == '.' || c == '`'
1569 || c == '[' || c == ']' || c == '?' || c <= 040
1570 || confusing)
1571 PRINTCHAR ('\\'), confusing = 0;
1572 }
1573 PRINTCHAR (c);
1574 }
1575 }
1576 break;
1577
1578 case Lisp_Cons:
1579 /* If deeper than spec'd depth, print placeholder. */
1580 if (INTEGERP (Vprint_level)
1581 && print_depth > XINT (Vprint_level))
1582 strout ("...", -1, -1, printcharfun);
1583 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1584 && (EQ (XCAR (obj), Qquote)))
1585 {
1586 PRINTCHAR ('\'');
1587 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1588 }
1589 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1590 && (EQ (XCAR (obj), Qfunction)))
1591 {
1592 PRINTCHAR ('#');
1593 PRINTCHAR ('\'');
1594 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1595 }
1596 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1597 && ((EQ (XCAR (obj), Qbackquote))))
1598 {
1599 print_object (XCAR (obj), printcharfun, 0);
1600 new_backquote_output++;
1601 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1602 new_backquote_output--;
1603 }
1604 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1605 && new_backquote_output
1606 && ((EQ (XCAR (obj), Qbackquote)
1607 || EQ (XCAR (obj), Qcomma)
1608 || EQ (XCAR (obj), Qcomma_at)
1609 || EQ (XCAR (obj), Qcomma_dot))))
1610 {
1611 print_object (XCAR (obj), printcharfun, 0);
1612 new_backquote_output--;
1613 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1614 new_backquote_output++;
1615 }
1616 else
1617 {
1618 PRINTCHAR ('(');
1619
1620 {
1621 printmax_t i, print_length;
1622 Lisp_Object halftail = obj;
1623
1624 /* Negative values of print-length are invalid in CL.
1625 Treat them like nil, as CMUCL does. */
1626 if (NATNUMP (Vprint_length))
1627 print_length = XFASTINT (Vprint_length);
1628 else
1629 print_length = TYPE_MAXIMUM (printmax_t);
1630
1631 i = 0;
1632 while (CONSP (obj))
1633 {
1634 /* Detect circular list. */
1635 if (NILP (Vprint_circle))
1636 {
1637 /* Simple but incomplete way. */
1638 if (i != 0 && EQ (obj, halftail))
1639 {
1640 int len = sprintf (buf, " . #%"pMd, i / 2);
1641 strout (buf, len, len, printcharfun);
1642 goto end_of_list;
1643 }
1644 }
1645 else
1646 {
1647 /* With the print-circle feature. */
1648 if (i != 0)
1649 {
1650 Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil);
1651 if (INTEGERP (num))
1652 {
1653 strout (" . ", 3, 3, printcharfun);
1654 print_object (obj, printcharfun, escapeflag);
1655 goto end_of_list;
1656 }
1657 }
1658 }
1659
1660 if (i)
1661 PRINTCHAR (' ');
1662
1663 if (print_length <= i)
1664 {
1665 strout ("...", 3, 3, printcharfun);
1666 goto end_of_list;
1667 }
1668
1669 i++;
1670 print_object (XCAR (obj), printcharfun, escapeflag);
1671
1672 obj = XCDR (obj);
1673 if (!(i & 1))
1674 halftail = XCDR (halftail);
1675 }
1676 }
1677
1678 /* OBJ non-nil here means it's the end of a dotted list. */
1679 if (!NILP (obj))
1680 {
1681 strout (" . ", 3, 3, printcharfun);
1682 print_object (obj, printcharfun, escapeflag);
1683 }
1684
1685 end_of_list:
1686 PRINTCHAR (')');
1687 }
1688 break;
1689
1690 case Lisp_Vectorlike:
1691 if (PROCESSP (obj))
1692 {
1693 if (escapeflag)
1694 {
1695 strout ("#<process ", -1, -1, printcharfun);
1696 print_string (XPROCESS (obj)->name, printcharfun);
1697 PRINTCHAR ('>');
1698 }
1699 else
1700 print_string (XPROCESS (obj)->name, printcharfun);
1701 }
1702 else if (BOOL_VECTOR_P (obj))
1703 {
1704 ptrdiff_t i;
1705 int len;
1706 unsigned char c;
1707 struct gcpro gcpro1;
1708 ptrdiff_t size_in_chars
1709 = ((XBOOL_VECTOR (obj)->size + BOOL_VECTOR_BITS_PER_CHAR - 1)
1710 / BOOL_VECTOR_BITS_PER_CHAR);
1711
1712 GCPRO1 (obj);
1713
1714 PRINTCHAR ('#');
1715 PRINTCHAR ('&');
1716 len = sprintf (buf, "%"pI"d", XBOOL_VECTOR (obj)->size);
1717 strout (buf, len, len, printcharfun);
1718 PRINTCHAR ('\"');
1719
1720 /* Don't print more characters than the specified maximum.
1721 Negative values of print-length are invalid. Treat them
1722 like a print-length of nil. */
1723 if (NATNUMP (Vprint_length)
1724 && XFASTINT (Vprint_length) < size_in_chars)
1725 size_in_chars = XFASTINT (Vprint_length);
1726
1727 for (i = 0; i < size_in_chars; i++)
1728 {
1729 QUIT;
1730 c = XBOOL_VECTOR (obj)->data[i];
1731 if (c == '\n' && print_escape_newlines)
1732 {
1733 PRINTCHAR ('\\');
1734 PRINTCHAR ('n');
1735 }
1736 else if (c == '\f' && print_escape_newlines)
1737 {
1738 PRINTCHAR ('\\');
1739 PRINTCHAR ('f');
1740 }
1741 else if (c > '\177')
1742 {
1743 /* Use octal escapes to avoid encoding issues. */
1744 PRINTCHAR ('\\');
1745 PRINTCHAR ('0' + ((c >> 6) & 3));
1746 PRINTCHAR ('0' + ((c >> 3) & 7));
1747 PRINTCHAR ('0' + (c & 7));
1748 }
1749 else
1750 {
1751 if (c == '\"' || c == '\\')
1752 PRINTCHAR ('\\');
1753 PRINTCHAR (c);
1754 }
1755 }
1756 PRINTCHAR ('\"');
1757
1758 UNGCPRO;
1759 }
1760 else if (SUBRP (obj))
1761 {
1762 strout ("#<subr ", -1, -1, printcharfun);
1763 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun);
1764 PRINTCHAR ('>');
1765 }
1766 #ifdef HAVE_XWIDGETS
1767 else if (XWIDGETP (obj))
1768 {
1769 strout ("#<xwidget ", -1, -1, printcharfun);
1770 PRINTCHAR ('>');
1771 }
1772 else if (XWIDGET_VIEW_P (obj))
1773 {
1774 strout ("#<xwidget-view ", -1, -1, printcharfun);
1775 PRINTCHAR ('>');
1776 }
1777 #endif
1778 else if (WINDOWP (obj))
1779 {
1780 void *ptr = XWINDOW (obj);
1781 int len = sprintf (buf, "#<window %p", ptr);
1782 strout (buf, len, len, printcharfun);
1783 if (BUFFERP (XWINDOW (obj)->contents))
1784 {
1785 strout (" on ", -1, -1, printcharfun);
1786 print_string (BVAR (XBUFFER (XWINDOW (obj)->contents), name),
1787 printcharfun);
1788 }
1789 PRINTCHAR ('>');
1790 }
1791 else if (TERMINALP (obj))
1792 {
1793 int len;
1794 struct terminal *t = XTERMINAL (obj);
1795 strout ("#<terminal ", -1, -1, printcharfun);
1796 len = sprintf (buf, "%d", t->id);
1797 strout (buf, len, len, printcharfun);
1798 if (t->name)
1799 {
1800 strout (" on ", -1, -1, printcharfun);
1801 strout (t->name, -1, -1, printcharfun);
1802 }
1803 PRINTCHAR ('>');
1804 }
1805 else if (HASH_TABLE_P (obj))
1806 {
1807 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
1808 ptrdiff_t i;
1809 ptrdiff_t real_size, size;
1810 int len;
1811 #if 0
1812 void *ptr = h;
1813 strout ("#<hash-table", -1, -1, printcharfun);
1814 if (SYMBOLP (h->test))
1815 {
1816 PRINTCHAR (' ');
1817 PRINTCHAR ('\'');
1818 strout (SDATA (SYMBOL_NAME (h->test)), -1, -1, printcharfun);
1819 PRINTCHAR (' ');
1820 strout (SDATA (SYMBOL_NAME (h->weak)), -1, -1, printcharfun);
1821 PRINTCHAR (' ');
1822 len = sprintf (buf, "%"pD"d/%"pD"d", h->count, ASIZE (h->next));
1823 strout (buf, len, len, printcharfun);
1824 }
1825 len = sprintf (buf, " %p>", ptr);
1826 strout (buf, len, len, printcharfun);
1827 #endif
1828 /* Implement a readable output, e.g.:
1829 #s(hash-table size 2 test equal data (k1 v1 k2 v2)) */
1830 /* Always print the size. */
1831 len = sprintf (buf, "#s(hash-table size %"pD"d", ASIZE (h->next));
1832 strout (buf, len, len, printcharfun);
1833
1834 if (!NILP (h->test.name))
1835 {
1836 strout (" test ", -1, -1, printcharfun);
1837 print_object (h->test.name, printcharfun, escapeflag);
1838 }
1839
1840 if (!NILP (h->weak))
1841 {
1842 strout (" weakness ", -1, -1, printcharfun);
1843 print_object (h->weak, printcharfun, escapeflag);
1844 }
1845
1846 if (!NILP (h->rehash_size))
1847 {
1848 strout (" rehash-size ", -1, -1, printcharfun);
1849 print_object (h->rehash_size, printcharfun, escapeflag);
1850 }
1851
1852 if (!NILP (h->rehash_threshold))
1853 {
1854 strout (" rehash-threshold ", -1, -1, printcharfun);
1855 print_object (h->rehash_threshold, printcharfun, escapeflag);
1856 }
1857
1858 strout (" data ", -1, -1, printcharfun);
1859
1860 /* Print the data here as a plist. */
1861 real_size = HASH_TABLE_SIZE (h);
1862 size = real_size;
1863
1864 /* Don't print more elements than the specified maximum. */
1865 if (NATNUMP (Vprint_length)
1866 && XFASTINT (Vprint_length) < size)
1867 size = XFASTINT (Vprint_length);
1868
1869 PRINTCHAR ('(');
1870 for (i = 0; i < size; i++)
1871 if (!NILP (HASH_HASH (h, i)))
1872 {
1873 if (i) PRINTCHAR (' ');
1874 print_object (HASH_KEY (h, i), printcharfun, escapeflag);
1875 PRINTCHAR (' ');
1876 print_object (HASH_VALUE (h, i), printcharfun, escapeflag);
1877 }
1878
1879 if (size < real_size)
1880 strout (" ...", 4, 4, printcharfun);
1881
1882 PRINTCHAR (')');
1883 PRINTCHAR (')');
1884
1885 }
1886 else if (BUFFERP (obj))
1887 {
1888 if (!BUFFER_LIVE_P (XBUFFER (obj)))
1889 strout ("#<killed buffer>", -1, -1, printcharfun);
1890 else if (escapeflag)
1891 {
1892 strout ("#<buffer ", -1, -1, printcharfun);
1893 print_string (BVAR (XBUFFER (obj), name), printcharfun);
1894 PRINTCHAR ('>');
1895 }
1896 else
1897 print_string (BVAR (XBUFFER (obj), name), printcharfun);
1898 }
1899 else if (WINDOW_CONFIGURATIONP (obj))
1900 {
1901 strout ("#<window-configuration>", -1, -1, printcharfun);
1902 }
1903 else if (FRAMEP (obj))
1904 {
1905 int len;
1906 void *ptr = XFRAME (obj);
1907 Lisp_Object frame_name = XFRAME (obj)->name;
1908
1909 strout ((FRAME_LIVE_P (XFRAME (obj))
1910 ? "#<frame " : "#<dead frame "),
1911 -1, -1, printcharfun);
1912 if (!STRINGP (frame_name))
1913 {
1914 /* A frame could be too young and have no name yet;
1915 don't crash. */
1916 if (SYMBOLP (frame_name))
1917 frame_name = Fsymbol_name (frame_name);
1918 else /* can't happen: name should be either nil or string */
1919 frame_name = build_string ("*INVALID*FRAME*NAME*");
1920 }
1921 print_string (frame_name, printcharfun);
1922 len = sprintf (buf, " %p>", ptr);
1923 strout (buf, len, len, printcharfun);
1924 }
1925 else if (FONTP (obj))
1926 {
1927 int i;
1928
1929 if (! FONT_OBJECT_P (obj))
1930 {
1931 if (FONT_SPEC_P (obj))
1932 strout ("#<font-spec", -1, -1, printcharfun);
1933 else
1934 strout ("#<font-entity", -1, -1, printcharfun);
1935 for (i = 0; i < FONT_SPEC_MAX; i++)
1936 {
1937 PRINTCHAR (' ');
1938 if (i < FONT_WEIGHT_INDEX || i > FONT_WIDTH_INDEX)
1939 print_object (AREF (obj, i), printcharfun, escapeflag);
1940 else
1941 print_object (font_style_symbolic (obj, i, 0),
1942 printcharfun, escapeflag);
1943 }
1944 }
1945 else
1946 {
1947 strout ("#<font-object ", -1, -1, printcharfun);
1948 print_object (AREF (obj, FONT_NAME_INDEX), printcharfun,
1949 escapeflag);
1950 }
1951 PRINTCHAR ('>');
1952 }
1953 else
1954 {
1955 ptrdiff_t size = ASIZE (obj);
1956 if (COMPILEDP (obj))
1957 {
1958 PRINTCHAR ('#');
1959 size &= PSEUDOVECTOR_SIZE_MASK;
1960 }
1961 if (CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj))
1962 {
1963 /* We print a char-table as if it were a vector,
1964 lumping the parent and default slots in with the
1965 character slots. But we add #^ as a prefix. */
1966
1967 /* Make each lowest sub_char_table start a new line.
1968 Otherwise we'll make a line extremely long, which
1969 results in slow redisplay. */
1970 if (SUB_CHAR_TABLE_P (obj)
1971 && XINT (XSUB_CHAR_TABLE (obj)->depth) == 3)
1972 PRINTCHAR ('\n');
1973 PRINTCHAR ('#');
1974 PRINTCHAR ('^');
1975 if (SUB_CHAR_TABLE_P (obj))
1976 PRINTCHAR ('^');
1977 size &= PSEUDOVECTOR_SIZE_MASK;
1978 }
1979 if (size & PSEUDOVECTOR_FLAG)
1980 goto badtype;
1981
1982 PRINTCHAR ('[');
1983 {
1984 register int i;
1985 register Lisp_Object tem;
1986 ptrdiff_t real_size = size;
1987
1988 /* Don't print more elements than the specified maximum. */
1989 if (NATNUMP (Vprint_length)
1990 && XFASTINT (Vprint_length) < size)
1991 size = XFASTINT (Vprint_length);
1992
1993 for (i = 0; i < size; i++)
1994 {
1995 if (i) PRINTCHAR (' ');
1996 tem = AREF (obj, i);
1997 print_object (tem, printcharfun, escapeflag);
1998 }
1999 if (size < real_size)
2000 strout (" ...", 4, 4, printcharfun);
2001 }
2002 PRINTCHAR (']');
2003 }
2004 break;
2005
2006 case Lisp_Misc:
2007 switch (XMISCTYPE (obj))
2008 {
2009 case Lisp_Misc_Marker:
2010 strout ("#<marker ", -1, -1, printcharfun);
2011 /* Do you think this is necessary? */
2012 if (XMARKER (obj)->insertion_type != 0)
2013 strout ("(moves after insertion) ", -1, -1, printcharfun);
2014 if (! XMARKER (obj)->buffer)
2015 strout ("in no buffer", -1, -1, printcharfun);
2016 else
2017 {
2018 int len = sprintf (buf, "at %"pD"d", marker_position (obj));
2019 strout (buf, len, len, printcharfun);
2020 strout (" in ", -1, -1, printcharfun);
2021 print_string (BVAR (XMARKER (obj)->buffer, name), printcharfun);
2022 }
2023 PRINTCHAR ('>');
2024 break;
2025
2026 case Lisp_Misc_Overlay:
2027 strout ("#<overlay ", -1, -1, printcharfun);
2028 if (! XMARKER (OVERLAY_START (obj))->buffer)
2029 strout ("in no buffer", -1, -1, printcharfun);
2030 else
2031 {
2032 int len = sprintf (buf, "from %"pD"d to %"pD"d in ",
2033 marker_position (OVERLAY_START (obj)),
2034 marker_position (OVERLAY_END (obj)));
2035 strout (buf, len, len, printcharfun);
2036 print_string (BVAR (XMARKER (OVERLAY_START (obj))->buffer, name),
2037 printcharfun);
2038 }
2039 PRINTCHAR ('>');
2040 break;
2041
2042 /* Remaining cases shouldn't happen in normal usage, but let's
2043 print them anyway for the benefit of the debugger. */
2044
2045 case Lisp_Misc_Free:
2046 strout ("#<misc free cell>", -1, -1, printcharfun);
2047 break;
2048
2049 case Lisp_Misc_Save_Value:
2050 {
2051 int i;
2052 struct Lisp_Save_Value *v = XSAVE_VALUE (obj);
2053
2054 strout ("#<save-value ", -1, -1, printcharfun);
2055
2056 if (v->save_type == SAVE_TYPE_MEMORY)
2057 {
2058 ptrdiff_t amount = v->data[1].integer;
2059
2060 #if GC_MARK_STACK
2061
2062 /* valid_lisp_object_p is reliable, so try to print up
2063 to 8 saved objects. This code is rarely used, so
2064 it's OK that valid_lisp_object_p is slow. */
2065
2066 int limit = min (amount, 8);
2067 Lisp_Object *area = v->data[0].pointer;
2068
2069 i = sprintf (buf, "with %"pD"d objects", amount);
2070 strout (buf, i, i, printcharfun);
2071
2072 for (i = 0; i < limit; i++)
2073 {
2074 Lisp_Object maybe = area[i];
2075
2076 if (valid_lisp_object_p (maybe) > 0)
2077 {
2078 PRINTCHAR (' ');
2079 print_object (maybe, printcharfun, escapeflag);
2080 }
2081 else
2082 strout (" <invalid>", -1, -1, printcharfun);
2083 }
2084 if (i == limit && i < amount)
2085 strout (" ...", 4, 4, printcharfun);
2086
2087 #else /* not GC_MARK_STACK */
2088
2089 /* There is no reliable way to determine whether the objects
2090 are initialized, so do not try to print them. */
2091
2092 i = sprintf (buf, "with %"pD"d objects", amount);
2093 strout (buf, i, i, printcharfun);
2094
2095 #endif /* GC_MARK_STACK */
2096 }
2097 else
2098 {
2099 /* Print each slot according to its type. */
2100 int index;
2101 for (index = 0; index < SAVE_VALUE_SLOTS; index++)
2102 {
2103 if (index)
2104 PRINTCHAR (' ');
2105
2106 switch (save_type (v, index))
2107 {
2108 case SAVE_UNUSED:
2109 i = sprintf (buf, "<unused>");
2110 break;
2111
2112 case SAVE_POINTER:
2113 i = sprintf (buf, "<pointer %p>",
2114 v->data[index].pointer);
2115 break;
2116
2117 case SAVE_FUNCPOINTER:
2118 i = sprintf (buf, "<funcpointer %p>",
2119 ((void *) (intptr_t)
2120 v->data[index].funcpointer));
2121 break;
2122
2123 case SAVE_INTEGER:
2124 i = sprintf (buf, "<integer %"pD"d>",
2125 v->data[index].integer);
2126 break;
2127
2128 case SAVE_OBJECT:
2129 print_object (v->data[index].object, printcharfun,
2130 escapeflag);
2131 continue;
2132
2133 default:
2134 emacs_abort ();
2135 }
2136
2137 strout (buf, i, i, printcharfun);
2138 }
2139 }
2140 PRINTCHAR ('>');
2141 }
2142 break;
2143
2144 default:
2145 goto badtype;
2146 }
2147 break;
2148
2149 default:
2150 badtype:
2151 {
2152 int len;
2153 /* We're in trouble if this happens!
2154 Probably should just emacs_abort (). */
2155 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun);
2156 if (MISCP (obj))
2157 len = sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
2158 else if (VECTORLIKEP (obj))
2159 len = sprintf (buf, "(PVEC 0x%08"pD"x)", ASIZE (obj));
2160 else
2161 len = sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
2162 strout (buf, len, len, printcharfun);
2163 strout (" Save your buffers immediately and please report this bug>",
2164 -1, -1, printcharfun);
2165 }
2166 }
2167
2168 print_depth--;
2169 }
2170 \f
2171
2172 /* Print a description of INTERVAL using PRINTCHARFUN.
2173 This is part of printing a string that has text properties. */
2174
2175 static void
2176 print_interval (INTERVAL interval, Lisp_Object printcharfun)
2177 {
2178 if (NILP (interval->plist))
2179 return;
2180 PRINTCHAR (' ');
2181 print_object (make_number (interval->position), printcharfun, 1);
2182 PRINTCHAR (' ');
2183 print_object (make_number (interval->position + LENGTH (interval)),
2184 printcharfun, 1);
2185 PRINTCHAR (' ');
2186 print_object (interval->plist, printcharfun, 1);
2187 }
2188
2189 /* Initialize debug_print stuff early to have it working from the very
2190 beginning. */
2191
2192 void
2193 init_print_once (void)
2194 {
2195 DEFSYM (Qexternal_debugging_output, "external-debugging-output");
2196 defsubr (&Sexternal_debugging_output);
2197 }
2198
2199 void
2200 syms_of_print (void)
2201 {
2202 DEFSYM (Qtemp_buffer_setup_hook, "temp-buffer-setup-hook");
2203
2204 DEFVAR_LISP ("standard-output", Vstandard_output,
2205 doc: /* Output stream `print' uses by default for outputting a character.
2206 This may be any function of one argument.
2207 It may also be a buffer (output is inserted before point)
2208 or a marker (output is inserted and the marker is advanced)
2209 or the symbol t (output appears in the echo area). */);
2210 Vstandard_output = Qt;
2211 DEFSYM (Qstandard_output, "standard-output");
2212
2213 DEFVAR_LISP ("float-output-format", Vfloat_output_format,
2214 doc: /* The format descriptor string used to print floats.
2215 This is a %-spec like those accepted by `printf' in C,
2216 but with some restrictions. It must start with the two characters `%.'.
2217 After that comes an integer precision specification,
2218 and then a letter which controls the format.
2219 The letters allowed are `e', `f' and `g'.
2220 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"
2221 Use `f' for decimal point notation \"DIGITS.DIGITS\".
2222 Use `g' to choose the shorter of those two formats for the number at hand.
2223 The precision in any of these cases is the number of digits following
2224 the decimal point. With `f', a precision of 0 means to omit the
2225 decimal point. 0 is not allowed with `e' or `g'.
2226
2227 A value of nil means to use the shortest notation
2228 that represents the number without losing information. */);
2229 Vfloat_output_format = Qnil;
2230 DEFSYM (Qfloat_output_format, "float-output-format");
2231
2232 DEFVAR_LISP ("print-length", Vprint_length,
2233 doc: /* Maximum length of list to print before abbreviating.
2234 A value of nil means no limit. See also `eval-expression-print-length'. */);
2235 Vprint_length = Qnil;
2236
2237 DEFVAR_LISP ("print-level", Vprint_level,
2238 doc: /* Maximum depth of list nesting to print before abbreviating.
2239 A value of nil means no limit. See also `eval-expression-print-level'. */);
2240 Vprint_level = Qnil;
2241
2242 DEFVAR_BOOL ("print-escape-newlines", print_escape_newlines,
2243 doc: /* Non-nil means print newlines in strings as `\\n'.
2244 Also print formfeeds as `\\f'. */);
2245 print_escape_newlines = 0;
2246
2247 DEFVAR_BOOL ("print-escape-nonascii", print_escape_nonascii,
2248 doc: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO.
2249 \(OOO is the octal representation of the character code.)
2250 Only single-byte characters are affected, and only in `prin1'.
2251 When the output goes in a multibyte buffer, this feature is
2252 enabled regardless of the value of the variable. */);
2253 print_escape_nonascii = 0;
2254
2255 DEFVAR_BOOL ("print-escape-multibyte", print_escape_multibyte,
2256 doc: /* Non-nil means print multibyte characters in strings as \\xXXXX.
2257 \(XXXX is the hex representation of the character code.)
2258 This affects only `prin1'. */);
2259 print_escape_multibyte = 0;
2260
2261 DEFVAR_BOOL ("print-quoted", print_quoted,
2262 doc: /* Non-nil means print quoted forms with reader syntax.
2263 I.e., (quote foo) prints as 'foo, (function foo) as #'foo. */);
2264 print_quoted = 0;
2265
2266 DEFVAR_LISP ("print-gensym", Vprint_gensym,
2267 doc: /* Non-nil means print uninterned symbols so they will read as uninterned.
2268 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.
2269 When the uninterned symbol appears within a recursive data structure,
2270 and the symbol appears more than once, in addition use the #N# and #N=
2271 constructs as needed, so that multiple references to the same symbol are
2272 shared once again when the text is read back. */);
2273 Vprint_gensym = Qnil;
2274
2275 DEFVAR_LISP ("print-circle", Vprint_circle,
2276 doc: /* Non-nil means print recursive structures using #N= and #N# syntax.
2277 If nil, printing proceeds recursively and may lead to
2278 `max-lisp-eval-depth' being exceeded or an error may occur:
2279 \"Apparently circular structure being printed.\" Also see
2280 `print-length' and `print-level'.
2281 If non-nil, shared substructures anywhere in the structure are printed
2282 with `#N=' before the first occurrence (in the order of the print
2283 representation) and `#N#' in place of each subsequent occurrence,
2284 where N is a positive decimal integer. */);
2285 Vprint_circle = Qnil;
2286
2287 DEFVAR_LISP ("print-continuous-numbering", Vprint_continuous_numbering,
2288 doc: /* Non-nil means number continuously across print calls.
2289 This affects the numbers printed for #N= labels and #M# references.
2290 See also `print-circle', `print-gensym', and `print-number-table'.
2291 This variable should not be set with `setq'; bind it with a `let' instead. */);
2292 Vprint_continuous_numbering = Qnil;
2293
2294 DEFVAR_LISP ("print-number-table", Vprint_number_table,
2295 doc: /* A vector used internally to produce `#N=' labels and `#N#' references.
2296 The Lisp printer uses this vector to detect Lisp objects referenced more
2297 than once.
2298
2299 When you bind `print-continuous-numbering' to t, you should probably
2300 also bind `print-number-table' to nil. This ensures that the value of
2301 `print-number-table' can be garbage-collected once the printing is
2302 done. If all elements of `print-number-table' are nil, it means that
2303 the printing done so far has not found any shared structure or objects
2304 that need to be recorded in the table. */);
2305 Vprint_number_table = Qnil;
2306
2307 DEFVAR_LISP ("print-charset-text-property", Vprint_charset_text_property,
2308 doc: /* A flag to control printing of `charset' text property on printing a string.
2309 The value must be nil, t, or `default'.
2310
2311 If the value is nil, don't print the text property `charset'.
2312
2313 If the value is t, always print the text property `charset'.
2314
2315 If the value is `default', print the text property `charset' only when
2316 the value is different from what is guessed in the current charset
2317 priorities. */);
2318 Vprint_charset_text_property = Qdefault;
2319
2320 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
2321 staticpro (&Vprin1_to_string_buffer);
2322
2323 defsubr (&Sprin1);
2324 defsubr (&Sprin1_to_string);
2325 defsubr (&Serror_message_string);
2326 defsubr (&Sprinc);
2327 defsubr (&Sprint);
2328 defsubr (&Sterpri);
2329 defsubr (&Swrite_char);
2330 #ifdef WITH_REDIRECT_DEBUGGING_OUTPUT
2331 defsubr (&Sredirect_debugging_output);
2332 #endif
2333
2334 DEFSYM (Qprint_escape_newlines, "print-escape-newlines");
2335 DEFSYM (Qprint_escape_multibyte, "print-escape-multibyte");
2336 DEFSYM (Qprint_escape_nonascii, "print-escape-nonascii");
2337
2338 print_prune_charset_plist = Qnil;
2339 staticpro (&print_prune_charset_plist);
2340 }