Add support for large files, 64-bit Solaris, system locale codings.
[bpt/emacs.git] / src / print.c
1 /* Lisp object printing and output streams.
2 Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 98, 1999
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "buffer.h"
27 #include "charset.h"
28 #include "frame.h"
29 #include "window.h"
30 #include "process.h"
31 #include "dispextern.h"
32 #include "termchar.h"
33 #include "keyboard.h"
34
35 #ifdef USE_TEXT_PROPERTIES
36 #include "intervals.h"
37 #endif
38
39 Lisp_Object Vstandard_output, Qstandard_output;
40
41 Lisp_Object Qtemp_buffer_setup_hook;
42
43 /* These are used to print like we read. */
44 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
45
46 #ifdef LISP_FLOAT_TYPE
47 Lisp_Object Vfloat_output_format, Qfloat_output_format;
48
49 /* Work around a problem that happens because math.h on hpux 7
50 defines two static variables--which, in Emacs, are not really static,
51 because `static' is defined as nothing. The problem is that they are
52 defined both here and in lread.c.
53 These macros prevent the name conflict. */
54 #if defined (HPUX) && !defined (HPUX8)
55 #define _MAXLDBL print_maxldbl
56 #define _NMAXLDBL print_nmaxldbl
57 #endif
58
59 #include <math.h>
60
61 #if STDC_HEADERS
62 #include <float.h>
63 #endif
64
65 /* Default to values appropriate for IEEE floating point. */
66 #ifndef FLT_RADIX
67 #define FLT_RADIX 2
68 #endif
69 #ifndef DBL_MANT_DIG
70 #define DBL_MANT_DIG 53
71 #endif
72 #ifndef DBL_DIG
73 #define DBL_DIG 15
74 #endif
75 #ifndef DBL_MIN
76 #define DBL_MIN 2.2250738585072014e-308
77 #endif
78
79 #ifdef DBL_MIN_REPLACEMENT
80 #undef DBL_MIN
81 #define DBL_MIN DBL_MIN_REPLACEMENT
82 #endif
83
84 /* Define DOUBLE_DIGITS_BOUND, an upper bound on the number of decimal digits
85 needed to express a float without losing information.
86 The general-case formula is valid for the usual case, IEEE floating point,
87 but many compilers can't optimize the formula to an integer constant,
88 so make a special case for it. */
89 #if FLT_RADIX == 2 && DBL_MANT_DIG == 53
90 #define DOUBLE_DIGITS_BOUND 17 /* IEEE floating point */
91 #else
92 #define DOUBLE_DIGITS_BOUND ((int) ceil (log10 (pow (FLT_RADIX, DBL_MANT_DIG))))
93 #endif
94
95 #endif /* LISP_FLOAT_TYPE */
96
97 /* Avoid actual stack overflow in print. */
98 int print_depth;
99
100 /* Detect most circularities to print finite output. */
101 #define PRINT_CIRCLE 200
102 Lisp_Object being_printed[PRINT_CIRCLE];
103
104 /* When printing into a buffer, first we put the text in this
105 block, then insert it all at once. */
106 char *print_buffer;
107
108 /* Size allocated in print_buffer. */
109 int print_buffer_size;
110 /* Chars stored in print_buffer. */
111 int print_buffer_pos;
112 /* Bytes stored in print_buffer. */
113 int print_buffer_pos_byte;
114
115 /* Maximum length of list to print in full; noninteger means
116 effectively infinity */
117
118 Lisp_Object Vprint_length;
119
120 /* Maximum depth of list to print in full; noninteger means
121 effectively infinity. */
122
123 Lisp_Object Vprint_level;
124
125 /* Nonzero means print newlines in strings as \n. */
126
127 int print_escape_newlines;
128
129 /* Nonzero means to print single-byte non-ascii characters in strings as
130 octal escapes. */
131
132 int print_escape_nonascii;
133
134 /* Nonzero means to print multibyte characters in strings as hex escapes. */
135
136 int print_escape_multibyte;
137
138 Lisp_Object Qprint_escape_newlines;
139 Lisp_Object Qprint_escape_multibyte, Qprint_escape_nonascii;
140
141 /* Nonzero means print (quote foo) forms as 'foo, etc. */
142
143 int print_quoted;
144
145 /* Non-nil means print #: before uninterned symbols. */
146
147 Lisp_Object Vprint_gensym;
148
149 /* Non-nil means print recursive structures using #n= and #n# syntax. */
150
151 Lisp_Object Vprint_circle;
152
153 /* Non-nil means keep continuous number for #n= and #n# syntax
154 between several print functions. */
155
156 Lisp_Object Vprint_continuous_numbering;
157
158 /* Vprint_number_table is a vector like [OBJ1 STAT1 OBJ2 STAT2 ...],
159 where OBJn are objects going to be printed, and STATn are their status,
160 which may be different meanings during process. See the comments of
161 the functions print and print_preprocess for details.
162 print_number_index keeps the last position the next object should be added,
163 twice of which is the actual vector position in Vprint_number_table. */
164 int print_number_index;
165 Lisp_Object Vprint_number_table;
166
167 /* PRINT_NUMBER_OBJECT returns the I'th object in Vprint_number_table TABLE.
168 PRINT_NUMBER_STATUS returns the status of the I'th object in TABLE.
169 See the comment of the variable Vprint_number_table. */
170 #define PRINT_NUMBER_OBJECT(table,i) XVECTOR ((table))->contents[(i) * 2]
171 #define PRINT_NUMBER_STATUS(table,i) XVECTOR ((table))->contents[(i) * 2 + 1]
172
173 /* Nonzero means print newline to stdout before next minibuffer message.
174 Defined in xdisp.c */
175
176 extern int noninteractive_need_newline;
177
178 extern int minibuffer_auto_raise;
179
180 #ifdef MAX_PRINT_CHARS
181 static int print_chars;
182 static int max_print;
183 #endif /* MAX_PRINT_CHARS */
184
185 void print_interval ();
186
187 \f
188 /* Low level output routines for characters and strings */
189
190 /* Lisp functions to do output using a stream
191 must have the stream in a variable called printcharfun
192 and must start with PRINTPREPARE, end with PRINTFINISH,
193 and use PRINTDECLARE to declare common variables.
194 Use PRINTCHAR to output one character,
195 or call strout to output a block of characters. */
196
197 #define PRINTDECLARE \
198 struct buffer *old = current_buffer; \
199 int old_point = -1, start_point; \
200 int old_point_byte, start_point_byte; \
201 int specpdl_count = specpdl_ptr - specpdl; \
202 int free_print_buffer = 0; \
203 int multibyte = !NILP (current_buffer->enable_multibyte_characters); \
204 Lisp_Object original
205
206 #define PRINTPREPARE \
207 original = printcharfun; \
208 if (NILP (printcharfun)) printcharfun = Qt; \
209 if (BUFFERP (printcharfun)) \
210 { \
211 if (XBUFFER (printcharfun) != current_buffer) \
212 Fset_buffer (printcharfun); \
213 printcharfun = Qnil; \
214 } \
215 if (MARKERP (printcharfun)) \
216 { \
217 if (!(XMARKER (original)->buffer)) \
218 error ("Marker does not point anywhere"); \
219 if (XMARKER (original)->buffer != current_buffer) \
220 set_buffer_internal (XMARKER (original)->buffer); \
221 old_point = PT; \
222 old_point_byte = PT_BYTE; \
223 SET_PT_BOTH (marker_position (printcharfun), \
224 marker_byte_position (printcharfun)); \
225 start_point = PT; \
226 start_point_byte = PT_BYTE; \
227 printcharfun = Qnil; \
228 } \
229 if (NILP (printcharfun)) \
230 { \
231 Lisp_Object string; \
232 if (NILP (current_buffer->enable_multibyte_characters) \
233 && ! print_escape_multibyte) \
234 specbind (Qprint_escape_multibyte, Qt); \
235 if (! NILP (current_buffer->enable_multibyte_characters) \
236 && ! print_escape_nonascii) \
237 specbind (Qprint_escape_nonascii, Qt); \
238 if (print_buffer != 0) \
239 { \
240 string = make_string_from_bytes (print_buffer, \
241 print_buffer_pos, \
242 print_buffer_pos_byte); \
243 record_unwind_protect (print_unwind, string); \
244 } \
245 else \
246 { \
247 print_buffer_size = 1000; \
248 print_buffer = (char *) xmalloc (print_buffer_size); \
249 free_print_buffer = 1; \
250 } \
251 print_buffer_pos = 0; \
252 print_buffer_pos_byte = 0; \
253 } \
254 if (EQ (printcharfun, Qt)) \
255 setup_echo_area_for_printing (multibyte);
256
257 #define PRINTFINISH \
258 if (NILP (printcharfun)) \
259 { \
260 if (print_buffer_pos != print_buffer_pos_byte \
261 && NILP (current_buffer->enable_multibyte_characters)) \
262 { \
263 unsigned char *temp \
264 = (unsigned char *) alloca (print_buffer_pos + 1); \
265 copy_text (print_buffer, temp, print_buffer_pos_byte, \
266 1, 0); \
267 insert_1_both (temp, print_buffer_pos, \
268 print_buffer_pos, 0, 1, 0); \
269 } \
270 else \
271 insert_1_both (print_buffer, print_buffer_pos, \
272 print_buffer_pos_byte, 0, 1, 0); \
273 } \
274 if (free_print_buffer) \
275 { \
276 xfree (print_buffer); \
277 print_buffer = 0; \
278 } \
279 unbind_to (specpdl_count, Qnil); \
280 if (MARKERP (original)) \
281 set_marker_both (original, Qnil, PT, PT_BYTE); \
282 if (old_point >= 0) \
283 SET_PT_BOTH (old_point + (old_point >= start_point \
284 ? PT - start_point : 0), \
285 old_point_byte + (old_point_byte >= start_point_byte \
286 ? PT_BYTE - start_point_byte : 0)); \
287 if (old != current_buffer) \
288 set_buffer_internal (old);
289
290 #define PRINTCHAR(ch) printchar (ch, printcharfun)
291
292 /* This is used to restore the saved contents of print_buffer
293 when there is a recursive call to print. */
294
295 static Lisp_Object
296 print_unwind (saved_text)
297 Lisp_Object saved_text;
298 {
299 bcopy (XSTRING (saved_text)->data, print_buffer, XSTRING (saved_text)->size);
300 }
301
302
303 /* Print character CH using method FUN. FUN nil means print to
304 print_buffer. FUN t means print to echo area or stdout if
305 non-interactive. If FUN is neither nil nor t, call FUN with CH as
306 argument. */
307
308 static void
309 printchar (ch, fun)
310 unsigned int ch;
311 Lisp_Object fun;
312 {
313 #ifdef MAX_PRINT_CHARS
314 if (max_print)
315 print_chars++;
316 #endif /* MAX_PRINT_CHARS */
317
318 if (!NILP (fun) && !EQ (fun, Qt))
319 call1 (fun, make_number (ch));
320 else
321 {
322 unsigned char work[4], *str;
323 int len = CHAR_STRING (ch, work, str);
324
325 QUIT;
326
327 if (NILP (fun))
328 {
329 if (print_buffer_pos_byte + len >= print_buffer_size)
330 print_buffer = (char *) xrealloc (print_buffer,
331 print_buffer_size *= 2);
332 bcopy (str, print_buffer + print_buffer_pos_byte, len);
333 print_buffer_pos += 1;
334 print_buffer_pos_byte += len;
335 }
336 else if (noninteractive)
337 {
338 fwrite (str, 1, len, stdout);
339 noninteractive_need_newline = 1;
340 }
341 else
342 {
343 int multibyte_p
344 = !NILP (current_buffer->enable_multibyte_characters);
345
346 if (!message_buf_print)
347 setup_echo_area_for_printing (multibyte_p);
348
349 insert_char (ch);
350 message_dolog (str, len, 0, multibyte_p);
351 }
352 }
353 }
354
355
356 /* Output SIZE characters, SIZE_BYTE bytes from string PTR using
357 method PRINTCHARFUN. If SIZE < 0, use the string length of PTR for
358 both SIZE and SIZE_BYTE. PRINTCHARFUN nil means output to
359 print_buffer. PRINTCHARFUN t means output to the echo area or to
360 stdout if non-interactive. If neither nil nor t, call Lisp
361 function PRINTCHARFUN for each character printed. MULTIBYTE
362 non-zero means PTR contains multibyte characters. */
363
364 static void
365 strout (ptr, size, size_byte, printcharfun, multibyte)
366 char *ptr;
367 int size, size_byte;
368 Lisp_Object printcharfun;
369 int multibyte;
370 {
371 if (size < 0)
372 size_byte = size = strlen (ptr);
373
374 if (NILP (printcharfun))
375 {
376 if (print_buffer_pos_byte + size_byte > print_buffer_size)
377 {
378 print_buffer_size = print_buffer_size * 2 + size_byte;
379 print_buffer = (char *) xrealloc (print_buffer,
380 print_buffer_size);
381 }
382 bcopy (ptr, print_buffer + print_buffer_pos_byte, size_byte);
383 print_buffer_pos += size;
384 print_buffer_pos_byte += size_byte;
385
386 #ifdef MAX_PRINT_CHARS
387 if (max_print)
388 print_chars += size;
389 #endif /* MAX_PRINT_CHARS */
390 }
391 else if (noninteractive)
392 {
393 fwrite (ptr, 1, size_byte, stdout);
394 noninteractive_need_newline = 1;
395 }
396 else if (EQ (printcharfun, Qt))
397 {
398 /* Output to echo area. We're trying to avoid a little overhead
399 here, that's the reason we don't call printchar to do the
400 job. */
401 int i;
402 int multibyte_p
403 = !NILP (current_buffer->enable_multibyte_characters);
404
405 if (!message_buf_print)
406 setup_echo_area_for_printing (multibyte_p);
407
408 message_dolog (ptr, size_byte, 0, multibyte_p);
409
410 if (size == size_byte)
411 {
412 for (i = 0; i < size; ++i)
413 insert_char (*ptr++);
414 }
415 else
416 {
417 int len;
418 for (i = 0; i < size_byte; i += len)
419 {
420 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
421 insert_char (ch);
422 }
423 }
424
425 #ifdef MAX_PRINT_CHARS
426 if (max_print)
427 print_chars += size;
428 #endif /* MAX_PRINT_CHARS */
429 }
430 else
431 {
432 /* PRINTCHARFUN is a Lisp function. */
433 int i = 0;
434
435 if (size == size_byte)
436 {
437 while (i < size_byte)
438 {
439 int ch = ptr[i++];
440 PRINTCHAR (ch);
441 }
442 }
443 else
444 {
445 while (i < size_byte)
446 {
447 /* Here, we must convert each multi-byte form to the
448 corresponding character code before handing it to
449 PRINTCHAR. */
450 int len;
451 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
452 PRINTCHAR (ch);
453 i += len;
454 }
455 }
456 }
457 }
458
459 /* Print the contents of a string STRING using PRINTCHARFUN.
460 It isn't safe to use strout in many cases,
461 because printing one char can relocate. */
462
463 static void
464 print_string (string, printcharfun)
465 Lisp_Object string;
466 Lisp_Object printcharfun;
467 {
468 if (EQ (printcharfun, Qt) || NILP (printcharfun))
469 {
470 int chars;
471
472 if (STRING_MULTIBYTE (string))
473 chars = XSTRING (string)->size;
474 else if (EQ (printcharfun, Qt)
475 ? ! NILP (buffer_defaults.enable_multibyte_characters)
476 : ! NILP (current_buffer->enable_multibyte_characters))
477 chars = multibyte_chars_in_text (XSTRING (string)->data,
478 STRING_BYTES (XSTRING (string)));
479 else
480 chars = STRING_BYTES (XSTRING (string));
481
482 /* strout is safe for output to a frame (echo area) or to print_buffer. */
483 strout (XSTRING (string)->data,
484 chars, STRING_BYTES (XSTRING (string)),
485 printcharfun, STRING_MULTIBYTE (string));
486 }
487 else
488 {
489 /* Otherwise, string may be relocated by printing one char.
490 So re-fetch the string address for each character. */
491 int i;
492 int size = XSTRING (string)->size;
493 int size_byte = STRING_BYTES (XSTRING (string));
494 struct gcpro gcpro1;
495 GCPRO1 (string);
496 if (size == size_byte)
497 for (i = 0; i < size; i++)
498 PRINTCHAR (XSTRING (string)->data[i]);
499 else
500 for (i = 0; i < size_byte; i++)
501 {
502 /* Here, we must convert each multi-byte form to the
503 corresponding character code before handing it to PRINTCHAR. */
504 int len;
505 int ch = STRING_CHAR_AND_LENGTH (XSTRING (string)->data + i,
506 size_byte - i, len);
507 if (!CHAR_VALID_P (ch, 0))
508 {
509 ch = XSTRING (string)->data[i];
510 len = 1;
511 }
512 PRINTCHAR (ch);
513 i += len;
514 }
515 UNGCPRO;
516 }
517 }
518 \f
519 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
520 "Output character CHARACTER to stream PRINTCHARFUN.\n\
521 PRINTCHARFUN defaults to the value of `standard-output' (which see).")
522 (character, printcharfun)
523 Lisp_Object character, printcharfun;
524 {
525 PRINTDECLARE;
526
527 if (NILP (printcharfun))
528 printcharfun = Vstandard_output;
529 CHECK_NUMBER (character, 0);
530 PRINTPREPARE;
531 PRINTCHAR (XINT (character));
532 PRINTFINISH;
533 return character;
534 }
535
536 /* Used from outside of print.c to print a block of SIZE
537 single-byte chars at DATA on the default output stream.
538 Do not use this on the contents of a Lisp string. */
539
540 void
541 write_string (data, size)
542 char *data;
543 int size;
544 {
545 PRINTDECLARE;
546 Lisp_Object printcharfun;
547
548 printcharfun = Vstandard_output;
549
550 PRINTPREPARE;
551 strout (data, size, size, printcharfun, 0);
552 PRINTFINISH;
553 }
554
555 /* Used from outside of print.c to print a block of SIZE
556 single-byte chars at DATA on a specified stream PRINTCHARFUN.
557 Do not use this on the contents of a Lisp string. */
558
559 void
560 write_string_1 (data, size, printcharfun)
561 char *data;
562 int size;
563 Lisp_Object printcharfun;
564 {
565 PRINTDECLARE;
566
567 PRINTPREPARE;
568 strout (data, size, size, printcharfun, 0);
569 PRINTFINISH;
570 }
571
572
573 void
574 temp_output_buffer_setup (bufname)
575 char *bufname;
576 {
577 int count = specpdl_ptr - specpdl;
578 register struct buffer *old = current_buffer;
579 register Lisp_Object buf;
580
581 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
582
583 Fset_buffer (Fget_buffer_create (build_string (bufname)));
584
585 current_buffer->directory = old->directory;
586 current_buffer->read_only = Qnil;
587 current_buffer->filename = Qnil;
588 current_buffer->undo_list = Qt;
589 current_buffer->overlays_before = Qnil;
590 current_buffer->overlays_after = Qnil;
591 current_buffer->enable_multibyte_characters
592 = buffer_defaults.enable_multibyte_characters;
593 Ferase_buffer ();
594 XSETBUFFER (buf, current_buffer);
595
596 call1 (Vrun_hooks, Qtemp_buffer_setup_hook);
597
598 unbind_to (count, Qnil);
599
600 specbind (Qstandard_output, buf);
601 }
602
603 Lisp_Object
604 internal_with_output_to_temp_buffer (bufname, function, args)
605 char *bufname;
606 Lisp_Object (*function) P_ ((Lisp_Object));
607 Lisp_Object args;
608 {
609 int count = specpdl_ptr - specpdl;
610 Lisp_Object buf, val;
611 struct gcpro gcpro1;
612
613 GCPRO1 (args);
614 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
615 temp_output_buffer_setup (bufname);
616 buf = Vstandard_output;
617 UNGCPRO;
618
619 val = (*function) (args);
620
621 GCPRO1 (val);
622 temp_output_buffer_show (buf);
623 UNGCPRO;
624
625 return unbind_to (count, val);
626 }
627
628 DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer,
629 1, UNEVALLED, 0,
630 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.\n\
631 The buffer is cleared out initially, and marked as unmodified when done.\n\
632 All output done by BODY is inserted in that buffer by default.\n\
633 The buffer is displayed in another window, but not selected.\n\
634 The value of the last form in BODY is returned.\n\
635 If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\
636 \n\
637 The hook `temp-buffer-setup-hook' is run before BODY,\n\
638 with the buffer BUFNAME temporarily current.\n\
639 The hook `temp-buffer-show-hook' is run after the buffer is displayed,\n\
640 with the buffer temporarily current, and the window that was used\n\
641 to display it temporarily selected.\n\
642 \n\
643 If variable `temp-buffer-show-function' is non-nil, call it at the end\n\
644 to get the buffer displayed instead of just displaying the non-selected\n\
645 buffer and calling the hook. It gets one argument, the buffer to display.")
646 (args)
647 Lisp_Object args;
648 {
649 struct gcpro gcpro1;
650 Lisp_Object name;
651 int count = specpdl_ptr - specpdl;
652 Lisp_Object buf, val;
653
654 GCPRO1(args);
655 name = Feval (Fcar (args));
656 UNGCPRO;
657
658 CHECK_STRING (name, 0);
659 temp_output_buffer_setup (XSTRING (name)->data);
660 buf = Vstandard_output;
661
662 val = Fprogn (Fcdr (args));
663
664 temp_output_buffer_show (buf);
665
666 return unbind_to (count, val);
667 }
668
669 \f
670 static void print ();
671 static void print_preprocess ();
672 #ifdef USE_TEXT_PROPERTIES
673 static void print_preprocess_string ();
674 #endif /* USE_TEXT_PROPERTIES */
675 static void print_object ();
676
677 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
678 "Output a newline to stream PRINTCHARFUN.\n\
679 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.")
680 (printcharfun)
681 Lisp_Object printcharfun;
682 {
683 PRINTDECLARE;
684
685 if (NILP (printcharfun))
686 printcharfun = Vstandard_output;
687 PRINTPREPARE;
688 PRINTCHAR ('\n');
689 PRINTFINISH;
690 return Qt;
691 }
692
693 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
694 "Output the printed representation of OBJECT, any Lisp object.\n\
695 Quoting characters are printed when needed to make output that `read'\n\
696 can handle, whenever this is possible.\n\
697 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
698 (object, printcharfun)
699 Lisp_Object object, printcharfun;
700 {
701 PRINTDECLARE;
702
703 #ifdef MAX_PRINT_CHARS
704 max_print = 0;
705 #endif /* MAX_PRINT_CHARS */
706 if (NILP (printcharfun))
707 printcharfun = Vstandard_output;
708 PRINTPREPARE;
709 print (object, printcharfun, 1);
710 PRINTFINISH;
711 return object;
712 }
713
714 /* a buffer which is used to hold output being built by prin1-to-string */
715 Lisp_Object Vprin1_to_string_buffer;
716
717 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
718 "Return a string containing the printed representation of OBJECT,\n\
719 any Lisp object. Quoting characters are used when needed to make output\n\
720 that `read' can handle, whenever this is possible, unless the optional\n\
721 second argument NOESCAPE is non-nil.")
722 (object, noescape)
723 Lisp_Object object, noescape;
724 {
725 PRINTDECLARE;
726 Lisp_Object printcharfun;
727 struct gcpro gcpro1, gcpro2;
728 Lisp_Object tem;
729
730 /* Save and restore this--we are altering a buffer
731 but we don't want to deactivate the mark just for that.
732 No need for specbind, since errors deactivate the mark. */
733 tem = Vdeactivate_mark;
734 GCPRO2 (object, tem);
735
736 printcharfun = Vprin1_to_string_buffer;
737 PRINTPREPARE;
738 print (object, printcharfun, NILP (noescape));
739 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
740 PRINTFINISH;
741 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
742 object = Fbuffer_string ();
743
744 Ferase_buffer ();
745 set_buffer_internal (old);
746
747 Vdeactivate_mark = tem;
748 UNGCPRO;
749
750 return object;
751 }
752
753 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
754 "Output the printed representation of OBJECT, any Lisp object.\n\
755 No quoting characters are used; no delimiters are printed around\n\
756 the contents of strings.\n\
757 Output stream is PRINTCHARFUN, or value of standard-output (which see).")
758 (object, printcharfun)
759 Lisp_Object object, printcharfun;
760 {
761 PRINTDECLARE;
762
763 if (NILP (printcharfun))
764 printcharfun = Vstandard_output;
765 PRINTPREPARE;
766 print (object, printcharfun, 0);
767 PRINTFINISH;
768 return object;
769 }
770
771 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
772 "Output the printed representation of OBJECT, with newlines around it.\n\
773 Quoting characters are printed when needed to make output that `read'\n\
774 can handle, whenever this is possible.\n\
775 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
776 (object, printcharfun)
777 Lisp_Object object, printcharfun;
778 {
779 PRINTDECLARE;
780 struct gcpro gcpro1;
781
782 #ifdef MAX_PRINT_CHARS
783 print_chars = 0;
784 max_print = MAX_PRINT_CHARS;
785 #endif /* MAX_PRINT_CHARS */
786 if (NILP (printcharfun))
787 printcharfun = Vstandard_output;
788 GCPRO1 (object);
789 PRINTPREPARE;
790 PRINTCHAR ('\n');
791 print (object, printcharfun, 1);
792 PRINTCHAR ('\n');
793 PRINTFINISH;
794 #ifdef MAX_PRINT_CHARS
795 max_print = 0;
796 print_chars = 0;
797 #endif /* MAX_PRINT_CHARS */
798 UNGCPRO;
799 return object;
800 }
801
802 /* The subroutine object for external-debugging-output is kept here
803 for the convenience of the debugger. */
804 Lisp_Object Qexternal_debugging_output;
805
806 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
807 "Write CHARACTER to stderr.\n\
808 You can call print while debugging emacs, and pass it this function\n\
809 to make it write to the debugging output.\n")
810 (character)
811 Lisp_Object character;
812 {
813 CHECK_NUMBER (character, 0);
814 putc (XINT (character), stderr);
815
816 #ifdef WINDOWSNT
817 /* Send the output to a debugger (nothing happens if there isn't one). */
818 {
819 char buf[2] = {(char) XINT (character), '\0'};
820 OutputDebugString (buf);
821 }
822 #endif
823
824 return character;
825 }
826
827 /* This is the interface for debugging printing. */
828
829 void
830 debug_print (arg)
831 Lisp_Object arg;
832 {
833 Fprin1 (arg, Qexternal_debugging_output);
834 fprintf (stderr, "\r\n");
835 }
836 \f
837 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
838 1, 1, 0,
839 "Convert an error value (ERROR-SYMBOL . DATA) to an error message.")
840 (obj)
841 Lisp_Object obj;
842 {
843 struct buffer *old = current_buffer;
844 Lisp_Object value;
845 struct gcpro gcpro1;
846
847 /* If OBJ is (error STRING), just return STRING.
848 That is not only faster, it also avoids the need to allocate
849 space here when the error is due to memory full. */
850 if (CONSP (obj) && EQ (XCAR (obj), Qerror)
851 && CONSP (XCDR (obj))
852 && STRINGP (XCAR (XCDR (obj)))
853 && NILP (XCDR (XCDR (obj))))
854 return XCAR (XCDR (obj));
855
856 print_error_message (obj, Vprin1_to_string_buffer);
857
858 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
859 value = Fbuffer_string ();
860
861 GCPRO1 (value);
862 Ferase_buffer ();
863 set_buffer_internal (old);
864 UNGCPRO;
865
866 return value;
867 }
868
869 /* Print an error message for the error DATA
870 onto Lisp output stream STREAM (suitable for the print functions). */
871
872 void
873 print_error_message (data, stream)
874 Lisp_Object data, stream;
875 {
876 Lisp_Object errname, errmsg, file_error, tail;
877 struct gcpro gcpro1;
878 int i;
879
880 errname = Fcar (data);
881
882 if (EQ (errname, Qerror))
883 {
884 data = Fcdr (data);
885 if (!CONSP (data)) data = Qnil;
886 errmsg = Fcar (data);
887 file_error = Qnil;
888 }
889 else
890 {
891 errmsg = Fget (errname, Qerror_message);
892 file_error = Fmemq (Qfile_error,
893 Fget (errname, Qerror_conditions));
894 }
895
896 /* Print an error message including the data items. */
897
898 tail = Fcdr_safe (data);
899 GCPRO1 (tail);
900
901 /* For file-error, make error message by concatenating
902 all the data items. They are all strings. */
903 if (!NILP (file_error) && CONSP (tail))
904 errmsg = XCAR (tail), tail = XCDR (tail);
905
906 if (STRINGP (errmsg))
907 Fprinc (errmsg, stream);
908 else
909 write_string_1 ("peculiar error", -1, stream);
910
911 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
912 {
913 write_string_1 (i ? ", " : ": ", 2, stream);
914 if (!NILP (file_error))
915 Fprinc (Fcar (tail), stream);
916 else
917 Fprin1 (Fcar (tail), stream);
918 }
919 UNGCPRO;
920 }
921 \f
922 #ifdef LISP_FLOAT_TYPE
923
924 /*
925 * The buffer should be at least as large as the max string size of the
926 * largest float, printed in the biggest notation. This is undoubtedly
927 * 20d float_output_format, with the negative of the C-constant "HUGE"
928 * from <math.h>.
929 *
930 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
931 *
932 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
933 * case of -1e307 in 20d float_output_format. What is one to do (short of
934 * re-writing _doprnt to be more sane)?
935 * -wsr
936 */
937
938 void
939 float_to_string (buf, data)
940 unsigned char *buf;
941 double data;
942 {
943 unsigned char *cp;
944 int width;
945
946 /* Check for plus infinity in a way that won't lose
947 if there is no plus infinity. */
948 if (data == data / 2 && data > 1.0)
949 {
950 strcpy (buf, "1.0e+INF");
951 return;
952 }
953 /* Likewise for minus infinity. */
954 if (data == data / 2 && data < -1.0)
955 {
956 strcpy (buf, "-1.0e+INF");
957 return;
958 }
959 /* Check for NaN in a way that won't fail if there are no NaNs. */
960 if (! (data * 0.0 >= 0.0))
961 {
962 /* Prepend "-" if the NaN's sign bit is negative.
963 The sign bit of a double is the bit that is 1 in -0.0. */
964 int i;
965 union { double d; char c[sizeof (double)]; } u_data, u_minus_zero;
966 u_data.d = data;
967 u_minus_zero.d = - 0.0;
968 for (i = 0; i < sizeof (double); i++)
969 if (u_data.c[i] & u_minus_zero.c[i])
970 {
971 *buf++ = '-';
972 break;
973 }
974
975 strcpy (buf, "0.0e+NaN");
976 return;
977 }
978
979 if (NILP (Vfloat_output_format)
980 || !STRINGP (Vfloat_output_format))
981 lose:
982 {
983 /* Generate the fewest number of digits that represent the
984 floating point value without losing information.
985 The following method is simple but a bit slow.
986 For ideas about speeding things up, please see:
987
988 Guy L Steele Jr & Jon L White, How to print floating-point numbers
989 accurately. SIGPLAN notices 25, 6 (June 1990), 112-126.
990
991 Robert G Burger & R Kent Dybvig, Printing floating point numbers
992 quickly and accurately, SIGPLAN notices 31, 5 (May 1996), 108-116. */
993
994 width = fabs (data) < DBL_MIN ? 1 : DBL_DIG;
995 do
996 sprintf (buf, "%.*g", width, data);
997 while (width++ < DOUBLE_DIGITS_BOUND && atof (buf) != data);
998 }
999 else /* oink oink */
1000 {
1001 /* Check that the spec we have is fully valid.
1002 This means not only valid for printf,
1003 but meant for floats, and reasonable. */
1004 cp = XSTRING (Vfloat_output_format)->data;
1005
1006 if (cp[0] != '%')
1007 goto lose;
1008 if (cp[1] != '.')
1009 goto lose;
1010
1011 cp += 2;
1012
1013 /* Check the width specification. */
1014 width = -1;
1015 if ('0' <= *cp && *cp <= '9')
1016 {
1017 width = 0;
1018 do
1019 width = (width * 10) + (*cp++ - '0');
1020 while (*cp >= '0' && *cp <= '9');
1021
1022 /* A precision of zero is valid only for %f. */
1023 if (width > DBL_DIG
1024 || (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 sprintf (buf, XSTRING (Vfloat_output_format)->data, 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 }
1052
1053 if (*cp == 0)
1054 {
1055 *cp++ = '.';
1056 *cp++ = '0';
1057 *cp++ = 0;
1058 }
1059 }
1060 }
1061 #endif /* LISP_FLOAT_TYPE */
1062 \f
1063 static void
1064 print (obj, printcharfun, escapeflag)
1065 Lisp_Object obj;
1066 register Lisp_Object printcharfun;
1067 int escapeflag;
1068 {
1069 print_depth = 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 {
1077 print_number_index = 0;
1078 Vprint_number_table = Qnil;
1079 }
1080
1081 /* Construct Vprint_number_table for print-gensym and print-circle. */
1082 if (!NILP (Vprint_gensym) || !NILP (Vprint_circle))
1083 {
1084 int i, start, index;
1085 /* Construct Vprint_number_table. */
1086 start = index = print_number_index;
1087 print_preprocess (obj);
1088 /* Remove unnecessary objects, which appear only once in OBJ;
1089 that is, whose status is Qnil. */
1090 for (i = start; i < print_number_index; i++)
1091 if (!NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1092 {
1093 PRINT_NUMBER_OBJECT (Vprint_number_table, index)
1094 = PRINT_NUMBER_OBJECT (Vprint_number_table, i);
1095 /* Reset the status field for the next print step. Now this
1096 field means whether the object has already been printed. */
1097 PRINT_NUMBER_STATUS (Vprint_number_table, index) = Qnil;
1098 index++;
1099 }
1100 print_number_index = index;
1101 }
1102
1103 print_object (obj, printcharfun, escapeflag);
1104 }
1105
1106 /* Construct Vprint_number_table according to the structure of OBJ.
1107 OBJ itself and all its elements will be added to Vprint_number_table
1108 recursively if it is a list, vector, compiled function, char-table,
1109 string (its text properties will be traced), or a symbol that has
1110 no obarray (this is for the print-gensym feature).
1111 The status fields of Vprint_number_table mean whether each object appears
1112 more than once in OBJ: Qnil at the first time, and Qt after that . */
1113 static void
1114 print_preprocess (obj)
1115 Lisp_Object obj;
1116 {
1117 int i, size;
1118
1119 loop:
1120 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
1121 || COMPILEDP (obj) || CHAR_TABLE_P (obj)
1122 || (! NILP (Vprint_gensym)
1123 && SYMBOLP (obj) && NILP (XSYMBOL (obj)->obarray)))
1124 {
1125 /* In case print-circle is nil and print-gensym is t,
1126 add OBJ to Vprint_number_table only when OBJ is a symbol. */
1127 if (! NILP (Vprint_circle) || SYMBOLP (obj))
1128 {
1129 for (i = 0; i < print_number_index; i++)
1130 if (PRINT_NUMBER_OBJECT (Vprint_number_table, i) == obj)
1131 {
1132 /* OBJ appears more than once. Let's remember that. */
1133 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1134 return;
1135 }
1136
1137 /* OBJ is not yet recorded. Let's add to the table. */
1138 if (print_number_index == 0)
1139 {
1140 /* Initialize the table. */
1141 Vprint_number_table = Fmake_vector (make_number (40), Qnil);
1142 }
1143 else if (XVECTOR (Vprint_number_table)->size == print_number_index * 2)
1144 {
1145 /* Reallocate the table. */
1146 int i = print_number_index * 4;
1147 Lisp_Object old_table = Vprint_number_table;
1148 Vprint_number_table = Fmake_vector (make_number (i), Qnil);
1149 for (i = 0; i < print_number_index; i++)
1150 {
1151 PRINT_NUMBER_OBJECT (Vprint_number_table, i)
1152 = PRINT_NUMBER_OBJECT (old_table, i);
1153 PRINT_NUMBER_STATUS (Vprint_number_table, i)
1154 = PRINT_NUMBER_STATUS (old_table, i);
1155 }
1156 }
1157 PRINT_NUMBER_OBJECT (Vprint_number_table, print_number_index) = obj;
1158 /* If Vprint_continuous_numbering is non-nil and OBJ is a gensym,
1159 always print the gensym with a number. This is a special for
1160 the lisp function byte-compile-output-docform. */
1161 if (! NILP (Vprint_continuous_numbering) && SYMBOLP (obj)
1162 && NILP (XSYMBOL (obj)->obarray))
1163 PRINT_NUMBER_STATUS (Vprint_number_table, print_number_index) = Qt;
1164 print_number_index++;
1165 }
1166
1167 switch (XGCTYPE (obj))
1168 {
1169 case Lisp_String:
1170 #ifdef USE_TEXT_PROPERTIES
1171 /* A string may have text properties, which can be circular. */
1172 traverse_intervals (XSTRING (obj)->intervals, 0, 0,
1173 print_preprocess_string, Qnil);
1174 #endif /* USE_TEXT_PROPERTIES */
1175 break;
1176
1177 case Lisp_Cons:
1178 print_preprocess (XCAR (obj));
1179 obj = XCDR (obj);
1180 goto loop;
1181
1182 case Lisp_Vectorlike:
1183 size = XVECTOR (obj)->size & PSEUDOVECTOR_SIZE_MASK;
1184 for (i = 0; i < size; i++)
1185 print_preprocess (XVECTOR (obj)->contents[i]);
1186 }
1187 }
1188 }
1189
1190 #ifdef USE_TEXT_PROPERTIES
1191 static void
1192 print_preprocess_string (interval, arg)
1193 INTERVAL interval;
1194 Lisp_Object arg;
1195 {
1196 print_preprocess (interval->plist);
1197 }
1198 #endif /* USE_TEXT_PROPERTIES */
1199
1200 static void
1201 print_object (obj, printcharfun, escapeflag)
1202 Lisp_Object obj;
1203 register Lisp_Object printcharfun;
1204 int escapeflag;
1205 {
1206 char buf[30];
1207
1208 QUIT;
1209
1210 /* Detect circularities and truncate them. */
1211 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
1212 || COMPILEDP (obj) || CHAR_TABLE_P (obj)
1213 || (! NILP (Vprint_gensym)
1214 && SYMBOLP (obj) && NILP (XSYMBOL (obj)->obarray)))
1215 {
1216 if (NILP (Vprint_circle) && NILP (Vprint_gensym))
1217 {
1218 /* Simple but incomplete way. */
1219 int i;
1220 for (i = 0; i < print_depth; i++)
1221 if (EQ (obj, being_printed[i]))
1222 {
1223 sprintf (buf, "#%d", i);
1224 strout (buf, -1, -1, printcharfun, 0);
1225 return;
1226 }
1227 being_printed[print_depth] = obj;
1228 }
1229 else
1230 {
1231 /* With the print-circle feature. */
1232 int i;
1233 for (i = 0; i < print_number_index; i++)
1234 if (PRINT_NUMBER_OBJECT (Vprint_number_table, i) == obj)
1235 {
1236 if (NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1237 {
1238 /* Add a prefix #n= if OBJ has not yet been printed;
1239 that is, its status field is nil. */
1240 sprintf (buf, "#%d=", i + 1);
1241 strout (buf, -1, -1, printcharfun, 0);
1242 /* OBJ is going to be printed. Set the status to t. */
1243 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1244 break;
1245 }
1246 else
1247 {
1248 /* Just print #n# if OBJ has already been printed. */
1249 sprintf (buf, "#%d#", i + 1);
1250 strout (buf, -1, -1, printcharfun, 0);
1251 return;
1252 }
1253 }
1254 }
1255 }
1256
1257 print_depth++;
1258
1259 if (print_depth > PRINT_CIRCLE)
1260 error ("Apparently circular structure being printed");
1261 #ifdef MAX_PRINT_CHARS
1262 if (max_print && print_chars > max_print)
1263 {
1264 PRINTCHAR ('\n');
1265 print_chars = 0;
1266 }
1267 #endif /* MAX_PRINT_CHARS */
1268
1269 switch (XGCTYPE (obj))
1270 {
1271 case Lisp_Int:
1272 if (sizeof (int) == sizeof (EMACS_INT))
1273 sprintf (buf, "%d", XINT (obj));
1274 else if (sizeof (long) == sizeof (EMACS_INT))
1275 sprintf (buf, "%ld", (long) XINT (obj));
1276 else
1277 abort ();
1278 strout (buf, -1, -1, printcharfun, 0);
1279 break;
1280
1281 #ifdef LISP_FLOAT_TYPE
1282 case Lisp_Float:
1283 {
1284 char pigbuf[350]; /* see comments in float_to_string */
1285
1286 float_to_string (pigbuf, XFLOAT_DATA (obj));
1287 strout (pigbuf, -1, -1, printcharfun, 0);
1288 }
1289 break;
1290 #endif
1291
1292 case Lisp_String:
1293 if (!escapeflag)
1294 print_string (obj, printcharfun);
1295 else
1296 {
1297 register int i, i_byte;
1298 struct gcpro gcpro1;
1299 unsigned char *str;
1300 int size_byte;
1301 /* 1 means we must ensure that the next character we output
1302 cannot be taken as part of a hex character escape. */
1303 int need_nonhex = 0;
1304
1305 GCPRO1 (obj);
1306
1307 #ifdef USE_TEXT_PROPERTIES
1308 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1309 {
1310 PRINTCHAR ('#');
1311 PRINTCHAR ('(');
1312 }
1313 #endif
1314
1315 PRINTCHAR ('\"');
1316 str = XSTRING (obj)->data;
1317 size_byte = STRING_BYTES (XSTRING (obj));
1318
1319 for (i = 0, i_byte = 0; i_byte < size_byte;)
1320 {
1321 /* Here, we must convert each multi-byte form to the
1322 corresponding character code before handing it to PRINTCHAR. */
1323 int len;
1324 int c;
1325
1326 if (STRING_MULTIBYTE (obj))
1327 {
1328 c = STRING_CHAR_AND_LENGTH (str + i_byte,
1329 size_byte - i_byte, len);
1330 if (CHAR_VALID_P (c, 0))
1331 i_byte += len;
1332 else
1333 c = str[i_byte++];
1334 }
1335 else
1336 c = str[i_byte++];
1337
1338 QUIT;
1339
1340 if (c == '\n' && print_escape_newlines)
1341 {
1342 PRINTCHAR ('\\');
1343 PRINTCHAR ('n');
1344 }
1345 else if (c == '\f' && print_escape_newlines)
1346 {
1347 PRINTCHAR ('\\');
1348 PRINTCHAR ('f');
1349 }
1350 else if (! SINGLE_BYTE_CHAR_P (c) && print_escape_multibyte)
1351 {
1352 /* When multibyte is disabled,
1353 print multibyte string chars using hex escapes. */
1354 unsigned char outbuf[50];
1355 sprintf (outbuf, "\\x%x", c);
1356 strout (outbuf, -1, -1, printcharfun, 0);
1357 need_nonhex = 1;
1358 }
1359 else if (SINGLE_BYTE_CHAR_P (c) && ! ASCII_BYTE_P (c)
1360 && print_escape_nonascii)
1361 {
1362 /* When printing in a multibyte buffer
1363 or when explicitly requested,
1364 print single-byte non-ASCII string chars
1365 using octal escapes. */
1366 unsigned char outbuf[5];
1367 sprintf (outbuf, "\\%03o", c);
1368 strout (outbuf, -1, -1, printcharfun, 0);
1369 }
1370 else
1371 {
1372 /* If we just had a hex escape, and this character
1373 could be taken as part of it,
1374 output `\ ' to prevent that. */
1375 if (need_nonhex)
1376 {
1377 need_nonhex = 0;
1378 if ((c >= 'a' && c <= 'f')
1379 || (c >= 'A' && c <= 'F')
1380 || (c >= '0' && c <= '9'))
1381 strout ("\\ ", -1, -1, printcharfun, 0);
1382 }
1383
1384 if (c == '\"' || c == '\\')
1385 PRINTCHAR ('\\');
1386 PRINTCHAR (c);
1387 }
1388 }
1389 PRINTCHAR ('\"');
1390
1391 #ifdef USE_TEXT_PROPERTIES
1392 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1393 {
1394 traverse_intervals (XSTRING (obj)->intervals,
1395 0, 0, print_interval, printcharfun);
1396 PRINTCHAR (')');
1397 }
1398 #endif
1399
1400 UNGCPRO;
1401 }
1402 break;
1403
1404 case Lisp_Symbol:
1405 {
1406 register int confusing;
1407 register unsigned char *p = XSYMBOL (obj)->name->data;
1408 register unsigned char *end = p + STRING_BYTES (XSYMBOL (obj)->name);
1409 register int c;
1410 int i, i_byte, size_byte;
1411 Lisp_Object name;
1412
1413 XSETSTRING (name, XSYMBOL (obj)->name);
1414
1415 if (p != end && (*p == '-' || *p == '+')) p++;
1416 if (p == end)
1417 confusing = 0;
1418 /* If symbol name begins with a digit, and ends with a digit,
1419 and contains nothing but digits and `e', it could be treated
1420 as a number. So set CONFUSING.
1421
1422 Symbols that contain periods could also be taken as numbers,
1423 but periods are always escaped, so we don't have to worry
1424 about them here. */
1425 else if (*p >= '0' && *p <= '9'
1426 && end[-1] >= '0' && end[-1] <= '9')
1427 {
1428 while (p != end && ((*p >= '0' && *p <= '9')
1429 /* Needed for \2e10. */
1430 || *p == 'e'))
1431 p++;
1432 confusing = (end == p);
1433 }
1434 else
1435 confusing = 0;
1436
1437 if (! NILP (Vprint_gensym) && NILP (XSYMBOL (obj)->obarray))
1438 {
1439 PRINTCHAR ('#');
1440 PRINTCHAR (':');
1441 }
1442
1443 size_byte = STRING_BYTES (XSTRING (name));
1444
1445 for (i = 0, i_byte = 0; i_byte < size_byte;)
1446 {
1447 /* Here, we must convert each multi-byte form to the
1448 corresponding character code before handing it to PRINTCHAR. */
1449
1450 if (STRING_MULTIBYTE (name))
1451 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1452 else
1453 c = XSTRING (name)->data[i_byte++];
1454
1455 QUIT;
1456
1457 if (escapeflag)
1458 {
1459 if (c == '\"' || c == '\\' || c == '\''
1460 || c == ';' || c == '#' || c == '(' || c == ')'
1461 || c == ',' || c =='.' || c == '`'
1462 || c == '[' || c == ']' || c == '?' || c <= 040
1463 || confusing)
1464 PRINTCHAR ('\\'), confusing = 0;
1465 }
1466 PRINTCHAR (c);
1467 }
1468 }
1469 break;
1470
1471 case Lisp_Cons:
1472 /* If deeper than spec'd depth, print placeholder. */
1473 if (INTEGERP (Vprint_level)
1474 && print_depth > XINT (Vprint_level))
1475 strout ("...", -1, -1, printcharfun, 0);
1476 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1477 && (EQ (XCAR (obj), Qquote)))
1478 {
1479 PRINTCHAR ('\'');
1480 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1481 }
1482 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1483 && (EQ (XCAR (obj), Qfunction)))
1484 {
1485 PRINTCHAR ('#');
1486 PRINTCHAR ('\'');
1487 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1488 }
1489 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1490 && ((EQ (XCAR (obj), Qbackquote)
1491 || EQ (XCAR (obj), Qcomma)
1492 || EQ (XCAR (obj), Qcomma_at)
1493 || EQ (XCAR (obj), Qcomma_dot))))
1494 {
1495 print_object (XCAR (obj), printcharfun, 0);
1496 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1497 }
1498 else
1499 {
1500 PRINTCHAR ('(');
1501 {
1502 register int i = 0;
1503 register int print_length = 0;
1504 Lisp_Object halftail = obj;
1505
1506 if (INTEGERP (Vprint_length))
1507 print_length = XINT (Vprint_length);
1508 while (CONSP (obj))
1509 {
1510 /* Detect circular list. */
1511 if (NILP (Vprint_circle))
1512 {
1513 /* Simple but imcomplete way. */
1514 if (i != 0 && EQ (obj, halftail))
1515 {
1516 sprintf (buf, " . #%d", i / 2);
1517 strout (buf, -1, -1, printcharfun, 0);
1518 goto end_of_list;
1519 }
1520 }
1521 else
1522 {
1523 /* With the print-circle feature. */
1524 if (i != 0)
1525 {
1526 int i;
1527 for (i = 0; i < print_number_index; i++)
1528 if (PRINT_NUMBER_OBJECT (Vprint_number_table, i) == obj)
1529 {
1530 if (NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1531 {
1532 strout (" . ", 3, 3, printcharfun, 0);
1533 print_object (obj, printcharfun, escapeflag);
1534 }
1535 else
1536 {
1537 sprintf (buf, " . #%d#", i + 1);
1538 strout (buf, -1, -1, printcharfun, 0);
1539 }
1540 goto end_of_list;
1541 }
1542 }
1543 }
1544 if (i++)
1545 PRINTCHAR (' ');
1546 if (print_length && i > print_length)
1547 {
1548 strout ("...", 3, 3, printcharfun, 0);
1549 goto end_of_list;
1550 }
1551 print_object (XCAR (obj), printcharfun, escapeflag);
1552 obj = XCDR (obj);
1553 if (!(i & 1))
1554 halftail = XCDR (halftail);
1555 }
1556 }
1557 if (!NILP (obj))
1558 {
1559 strout (" . ", 3, 3, printcharfun, 0);
1560 print_object (obj, printcharfun, escapeflag);
1561 }
1562 end_of_list:
1563 PRINTCHAR (')');
1564 }
1565 break;
1566
1567 case Lisp_Vectorlike:
1568 if (PROCESSP (obj))
1569 {
1570 if (escapeflag)
1571 {
1572 strout ("#<process ", -1, -1, printcharfun, 0);
1573 print_string (XPROCESS (obj)->name, printcharfun);
1574 PRINTCHAR ('>');
1575 }
1576 else
1577 print_string (XPROCESS (obj)->name, printcharfun);
1578 }
1579 else if (BOOL_VECTOR_P (obj))
1580 {
1581 register int i;
1582 register unsigned char c;
1583 struct gcpro gcpro1;
1584 int size_in_chars
1585 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
1586
1587 GCPRO1 (obj);
1588
1589 PRINTCHAR ('#');
1590 PRINTCHAR ('&');
1591 sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
1592 strout (buf, -1, -1, printcharfun, 0);
1593 PRINTCHAR ('\"');
1594
1595 /* Don't print more characters than the specified maximum. */
1596 if (INTEGERP (Vprint_length)
1597 && XINT (Vprint_length) < size_in_chars)
1598 size_in_chars = XINT (Vprint_length);
1599
1600 for (i = 0; i < size_in_chars; i++)
1601 {
1602 QUIT;
1603 c = XBOOL_VECTOR (obj)->data[i];
1604 if (c == '\n' && print_escape_newlines)
1605 {
1606 PRINTCHAR ('\\');
1607 PRINTCHAR ('n');
1608 }
1609 else if (c == '\f' && print_escape_newlines)
1610 {
1611 PRINTCHAR ('\\');
1612 PRINTCHAR ('f');
1613 }
1614 else
1615 {
1616 if (c == '\"' || c == '\\')
1617 PRINTCHAR ('\\');
1618 PRINTCHAR (c);
1619 }
1620 }
1621 PRINTCHAR ('\"');
1622
1623 UNGCPRO;
1624 }
1625 else if (SUBRP (obj))
1626 {
1627 strout ("#<subr ", -1, -1, printcharfun, 0);
1628 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun, 0);
1629 PRINTCHAR ('>');
1630 }
1631 else if (WINDOWP (obj))
1632 {
1633 strout ("#<window ", -1, -1, printcharfun, 0);
1634 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number));
1635 strout (buf, -1, -1, printcharfun, 0);
1636 if (!NILP (XWINDOW (obj)->buffer))
1637 {
1638 strout (" on ", -1, -1, printcharfun, 0);
1639 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
1640 }
1641 PRINTCHAR ('>');
1642 }
1643 else if (HASH_TABLE_P (obj))
1644 {
1645 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
1646 strout ("#<hash-table", -1, -1, printcharfun, 0);
1647 if (SYMBOLP (h->test))
1648 {
1649 PRINTCHAR (' ');
1650 PRINTCHAR ('\'');
1651 strout (XSYMBOL (h->test)->name->data, -1, -1, printcharfun, 0);
1652 PRINTCHAR (' ');
1653 strout (XSYMBOL (h->weak)->name->data, -1, -1, printcharfun, 0);
1654 PRINTCHAR (' ');
1655 sprintf (buf, "%d/%d", XFASTINT (h->count),
1656 XVECTOR (h->next)->size);
1657 strout (buf, -1, -1, printcharfun, 0);
1658 }
1659 sprintf (buf, " 0x%lx", (unsigned long) h);
1660 strout (buf, -1, -1, printcharfun, 0);
1661 PRINTCHAR ('>');
1662 }
1663 else if (BUFFERP (obj))
1664 {
1665 if (NILP (XBUFFER (obj)->name))
1666 strout ("#<killed buffer>", -1, -1, printcharfun, 0);
1667 else if (escapeflag)
1668 {
1669 strout ("#<buffer ", -1, -1, printcharfun, 0);
1670 print_string (XBUFFER (obj)->name, printcharfun);
1671 PRINTCHAR ('>');
1672 }
1673 else
1674 print_string (XBUFFER (obj)->name, printcharfun);
1675 }
1676 else if (WINDOW_CONFIGURATIONP (obj))
1677 {
1678 strout ("#<window-configuration>", -1, -1, printcharfun, 0);
1679 }
1680 else if (FRAMEP (obj))
1681 {
1682 strout ((FRAME_LIVE_P (XFRAME (obj))
1683 ? "#<frame " : "#<dead frame "),
1684 -1, -1, printcharfun, 0);
1685 print_string (XFRAME (obj)->name, printcharfun);
1686 sprintf (buf, " 0x%lx\\ ", (unsigned long) (XFRAME (obj)));
1687 strout (buf, -1, -1, printcharfun, 0);
1688 PRINTCHAR ('>');
1689 }
1690 else
1691 {
1692 int size = XVECTOR (obj)->size;
1693 if (COMPILEDP (obj))
1694 {
1695 PRINTCHAR ('#');
1696 size &= PSEUDOVECTOR_SIZE_MASK;
1697 }
1698 if (CHAR_TABLE_P (obj))
1699 {
1700 /* We print a char-table as if it were a vector,
1701 lumping the parent and default slots in with the
1702 character slots. But we add #^ as a prefix. */
1703 PRINTCHAR ('#');
1704 PRINTCHAR ('^');
1705 if (SUB_CHAR_TABLE_P (obj))
1706 PRINTCHAR ('^');
1707 size &= PSEUDOVECTOR_SIZE_MASK;
1708 }
1709 if (size & PSEUDOVECTOR_FLAG)
1710 goto badtype;
1711
1712 PRINTCHAR ('[');
1713 {
1714 register int i;
1715 register Lisp_Object tem;
1716
1717 /* Don't print more elements than the specified maximum. */
1718 if (INTEGERP (Vprint_length)
1719 && XINT (Vprint_length) < size)
1720 size = XINT (Vprint_length);
1721
1722 for (i = 0; i < size; i++)
1723 {
1724 if (i) PRINTCHAR (' ');
1725 tem = XVECTOR (obj)->contents[i];
1726 print_object (tem, printcharfun, escapeflag);
1727 }
1728 }
1729 PRINTCHAR (']');
1730 }
1731 break;
1732
1733 case Lisp_Misc:
1734 switch (XMISCTYPE (obj))
1735 {
1736 case Lisp_Misc_Marker:
1737 strout ("#<marker ", -1, -1, printcharfun, 0);
1738 /* Do you think this is necessary? */
1739 if (XMARKER (obj)->insertion_type != 0)
1740 strout ("(before-insertion) ", -1, -1, printcharfun, 0);
1741 if (!(XMARKER (obj)->buffer))
1742 strout ("in no buffer", -1, -1, printcharfun, 0);
1743 else
1744 {
1745 sprintf (buf, "at %d", marker_position (obj));
1746 strout (buf, -1, -1, printcharfun, 0);
1747 strout (" in ", -1, -1, printcharfun, 0);
1748 print_string (XMARKER (obj)->buffer->name, printcharfun);
1749 }
1750 PRINTCHAR ('>');
1751 break;
1752
1753 case Lisp_Misc_Overlay:
1754 strout ("#<overlay ", -1, -1, printcharfun, 0);
1755 if (!(XMARKER (OVERLAY_START (obj))->buffer))
1756 strout ("in no buffer", -1, -1, printcharfun, 0);
1757 else
1758 {
1759 sprintf (buf, "from %d to %d in ",
1760 marker_position (OVERLAY_START (obj)),
1761 marker_position (OVERLAY_END (obj)));
1762 strout (buf, -1, -1, printcharfun, 0);
1763 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
1764 printcharfun);
1765 }
1766 PRINTCHAR ('>');
1767 break;
1768
1769 /* Remaining cases shouldn't happen in normal usage, but let's print
1770 them anyway for the benefit of the debugger. */
1771 case Lisp_Misc_Free:
1772 strout ("#<misc free cell>", -1, -1, printcharfun, 0);
1773 break;
1774
1775 case Lisp_Misc_Intfwd:
1776 sprintf (buf, "#<intfwd to %d>", *XINTFWD (obj)->intvar);
1777 strout (buf, -1, -1, printcharfun, 0);
1778 break;
1779
1780 case Lisp_Misc_Boolfwd:
1781 sprintf (buf, "#<boolfwd to %s>",
1782 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
1783 strout (buf, -1, -1, printcharfun, 0);
1784 break;
1785
1786 case Lisp_Misc_Objfwd:
1787 strout ("#<objfwd to ", -1, -1, printcharfun, 0);
1788 print_object (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
1789 PRINTCHAR ('>');
1790 break;
1791
1792 case Lisp_Misc_Buffer_Objfwd:
1793 strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
1794 print_object (*(Lisp_Object *)((char *)current_buffer
1795 + XBUFFER_OBJFWD (obj)->offset),
1796 printcharfun, escapeflag);
1797 PRINTCHAR ('>');
1798 break;
1799
1800 case Lisp_Misc_Kboard_Objfwd:
1801 strout ("#<kboard_objfwd to ", -1, -1, printcharfun, 0);
1802 print_object (*(Lisp_Object *)((char *) current_kboard
1803 + XKBOARD_OBJFWD (obj)->offset),
1804 printcharfun, escapeflag);
1805 PRINTCHAR ('>');
1806 break;
1807
1808 case Lisp_Misc_Buffer_Local_Value:
1809 strout ("#<buffer_local_value ", -1, -1, printcharfun, 0);
1810 goto do_buffer_local;
1811 case Lisp_Misc_Some_Buffer_Local_Value:
1812 strout ("#<some_buffer_local_value ", -1, -1, printcharfun, 0);
1813 do_buffer_local:
1814 strout ("[realvalue] ", -1, -1, printcharfun, 0);
1815 print_object (XBUFFER_LOCAL_VALUE (obj)->realvalue,
1816 printcharfun, escapeflag);
1817 if (XBUFFER_LOCAL_VALUE (obj)->found_for_buffer)
1818 strout ("[local in buffer] ", -1, -1, printcharfun, 0);
1819 else
1820 strout ("[buffer] ", -1, -1, printcharfun, 0);
1821 print_object (XBUFFER_LOCAL_VALUE (obj)->buffer,
1822 printcharfun, escapeflag);
1823 if (XBUFFER_LOCAL_VALUE (obj)->check_frame)
1824 {
1825 if (XBUFFER_LOCAL_VALUE (obj)->found_for_frame)
1826 strout ("[local in frame] ", -1, -1, printcharfun, 0);
1827 else
1828 strout ("[frame] ", -1, -1, printcharfun, 0);
1829 print_object (XBUFFER_LOCAL_VALUE (obj)->frame,
1830 printcharfun, escapeflag);
1831 }
1832 strout ("[alist-elt] ", -1, -1, printcharfun, 0);
1833 print_object (XCAR (XBUFFER_LOCAL_VALUE (obj)->cdr),
1834 printcharfun, escapeflag);
1835 strout ("[default-value] ", -1, -1, printcharfun, 0);
1836 print_object (XCDR (XBUFFER_LOCAL_VALUE (obj)->cdr),
1837 printcharfun, escapeflag);
1838 PRINTCHAR ('>');
1839 break;
1840
1841 default:
1842 goto badtype;
1843 }
1844 break;
1845
1846 default:
1847 badtype:
1848 {
1849 /* We're in trouble if this happens!
1850 Probably should just abort () */
1851 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun, 0);
1852 if (MISCP (obj))
1853 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
1854 else if (VECTORLIKEP (obj))
1855 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
1856 else
1857 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
1858 strout (buf, -1, -1, printcharfun, 0);
1859 strout (" Save your buffers immediately and please report this bug>",
1860 -1, -1, printcharfun, 0);
1861 }
1862 }
1863
1864 print_depth--;
1865 }
1866 \f
1867 #ifdef USE_TEXT_PROPERTIES
1868
1869 /* Print a description of INTERVAL using PRINTCHARFUN.
1870 This is part of printing a string that has text properties. */
1871
1872 void
1873 print_interval (interval, printcharfun)
1874 INTERVAL interval;
1875 Lisp_Object printcharfun;
1876 {
1877 PRINTCHAR (' ');
1878 print_object (make_number (interval->position), printcharfun, 1);
1879 PRINTCHAR (' ');
1880 print_object (make_number (interval->position + LENGTH (interval)),
1881 printcharfun, 1);
1882 PRINTCHAR (' ');
1883 print_object (interval->plist, printcharfun, 1);
1884 }
1885
1886 #endif /* USE_TEXT_PROPERTIES */
1887 \f
1888 void
1889 syms_of_print ()
1890 {
1891 Qtemp_buffer_setup_hook = intern ("temp-buffer-setup-hook");
1892 staticpro (&Qtemp_buffer_setup_hook);
1893
1894 DEFVAR_LISP ("standard-output", &Vstandard_output,
1895 "Output stream `print' uses by default for outputting a character.\n\
1896 This may be any function of one argument.\n\
1897 It may also be a buffer (output is inserted before point)\n\
1898 or a marker (output is inserted and the marker is advanced)\n\
1899 or the symbol t (output appears in the echo area).");
1900 Vstandard_output = Qt;
1901 Qstandard_output = intern ("standard-output");
1902 staticpro (&Qstandard_output);
1903
1904 #ifdef LISP_FLOAT_TYPE
1905 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
1906 "The format descriptor string used to print floats.\n\
1907 This is a %-spec like those accepted by `printf' in C,\n\
1908 but with some restrictions. It must start with the two characters `%.'.\n\
1909 After that comes an integer precision specification,\n\
1910 and then a letter which controls the format.\n\
1911 The letters allowed are `e', `f' and `g'.\n\
1912 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\
1913 Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\
1914 Use `g' to choose the shorter of those two formats for the number at hand.\n\
1915 The precision in any of these cases is the number of digits following\n\
1916 the decimal point. With `f', a precision of 0 means to omit the\n\
1917 decimal point. 0 is not allowed with `e' or `g'.\n\n\
1918 A value of nil means to use the shortest notation\n\
1919 that represents the number without losing information.");
1920 Vfloat_output_format = Qnil;
1921 Qfloat_output_format = intern ("float-output-format");
1922 staticpro (&Qfloat_output_format);
1923 #endif /* LISP_FLOAT_TYPE */
1924
1925 DEFVAR_LISP ("print-length", &Vprint_length,
1926 "Maximum length of list to print before abbreviating.\n\
1927 A value of nil means no limit.");
1928 Vprint_length = Qnil;
1929
1930 DEFVAR_LISP ("print-level", &Vprint_level,
1931 "Maximum depth of list nesting to print before abbreviating.\n\
1932 A value of nil means no limit.");
1933 Vprint_level = Qnil;
1934
1935 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
1936 "Non-nil means print newlines in strings as backslash-n.\n\
1937 Also print formfeeds as backslash-f.");
1938 print_escape_newlines = 0;
1939
1940 DEFVAR_BOOL ("print-escape-nonascii", &print_escape_nonascii,
1941 "Non-nil means print unibyte non-ASCII chars in strings as \\OOO.\n\
1942 \(OOO is the octal representation of the character code.)\n\
1943 Only single-byte characters are affected, and only in `prin1'.");
1944 print_escape_nonascii = 0;
1945
1946 DEFVAR_BOOL ("print-escape-multibyte", &print_escape_multibyte,
1947 "Non-nil means print multibyte characters in strings as \\xXXXX.\n\
1948 \(XXX is the hex representation of the character code.)\n\
1949 This affects only `prin1'.");
1950 print_escape_multibyte = 0;
1951
1952 DEFVAR_BOOL ("print-quoted", &print_quoted,
1953 "Non-nil means print quoted forms with reader syntax.\n\
1954 I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and, backquoted\n\
1955 forms print in the new syntax.");
1956 print_quoted = 0;
1957
1958 DEFVAR_LISP ("print-gensym", &Vprint_gensym,
1959 "Non-nil means print uninterned symbols so they will read as uninterned.\n\
1960 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.\n\
1961 When the uninterned symbol appears within a recursive data structure\n\
1962 and the symbol appears more than once, in addition use the #N# and #N=\n\
1963 constructs as needed, so that multiple references to the same symbol are\n\
1964 shared once again when the text is read back.");
1965 Vprint_gensym = Qnil;
1966
1967 DEFVAR_LISP ("print-circle", &Vprint_circle,
1968 "*Non-nil means print recursive structures using #N= and #N# syntax.\n\
1969 If nil, printing proceeds recursively and may lead to\n\
1970 `max-lisp-eval-depth' being exceeded or an error may occur:\n\
1971 \"Apparently circular structure being printed.\" Also see\n\
1972 `print-length' and `print-level'.\n\
1973 If non-nil, shared substructures anywhere in the structure are printed\n\
1974 with `#N=' before the first occurrence (in the order of the print\n\
1975 representation) and `#N#' in place of each subsequent occurrence,\n\
1976 where N is a positive decimal integer.");
1977 Vprint_circle = Qnil;
1978
1979 DEFVAR_LISP ("print-continuous-numbering", &Vprint_continuous_numbering,
1980 "*Non-nil means keep numbering between several print functions.\n\
1981 See `print-gensym' nad `print-circle'. See also `print-number-table'.");
1982 Vprint_continuous_numbering = Qnil;
1983
1984 DEFVAR_LISP ("print-number-table", &Vprint_number_table,
1985 "A vector keeping the information of the current printed object.\n\
1986 This variable shouldn't be modified in Lisp level, but should be binded\n\
1987 with nil using let at the same position with `print-continuous-numbering',\n\
1988 so that the value of this variable can be freed after printing.");
1989 Vprint_number_table = Qnil;
1990
1991 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
1992 staticpro (&Vprin1_to_string_buffer);
1993
1994 defsubr (&Sprin1);
1995 defsubr (&Sprin1_to_string);
1996 defsubr (&Serror_message_string);
1997 defsubr (&Sprinc);
1998 defsubr (&Sprint);
1999 defsubr (&Sterpri);
2000 defsubr (&Swrite_char);
2001 defsubr (&Sexternal_debugging_output);
2002
2003 Qexternal_debugging_output = intern ("external-debugging-output");
2004 staticpro (&Qexternal_debugging_output);
2005
2006 Qprint_escape_newlines = intern ("print-escape-newlines");
2007 staticpro (&Qprint_escape_newlines);
2008
2009 Qprint_escape_multibyte = intern ("print-escape-multibyte");
2010 staticpro (&Qprint_escape_multibyte);
2011
2012 Qprint_escape_nonascii = intern ("print-escape-nonascii");
2013 staticpro (&Qprint_escape_nonascii);
2014
2015 defsubr (&Swith_output_to_temp_buffer);
2016 }