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