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