(print) <Lisp_String>: Follow a hex escape with `\ ' if nec.
[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;
453fa987
RS
1154 /* 1 means we must ensure that the next character we output
1155 cannot be taken as part of a hex character escape. */
1156 int need_nonhex = 0;
38010d50 1157
7651e1f5
RS
1158 GCPRO1 (obj);
1159
1160#ifdef USE_TEXT_PROPERTIES
1161 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1162 {
1163 PRINTCHAR ('#');
1164 PRINTCHAR ('(');
1165 }
1166#endif
38010d50
JB
1167
1168 PRINTCHAR ('\"');
fc932ac6 1169 size_byte = STRING_BYTES (XSTRING (obj));
dc2a0b79
RS
1170
1171 for (i = 0, i_byte = 0; i_byte < size_byte;)
38010d50 1172 {
6ddd6eee
RS
1173 /* Here, we must convert each multi-byte form to the
1174 corresponding character code before handing it to PRINTCHAR. */
1175 int len;
dc2a0b79
RS
1176 int c;
1177
1178 if (STRING_MULTIBYTE (obj))
1179 FETCH_STRING_CHAR_ADVANCE (c, obj, i, i_byte);
1180 else
1181 c = XSTRING (obj)->data[i_byte++];
1182
38010d50 1183 QUIT;
6ddd6eee 1184
38010d50
JB
1185 if (c == '\n' && print_escape_newlines)
1186 {
1187 PRINTCHAR ('\\');
1188 PRINTCHAR ('n');
1189 }
c6f7982f
RM
1190 else if (c == '\f' && print_escape_newlines)
1191 {
1192 PRINTCHAR ('\\');
1193 PRINTCHAR ('f');
1194 }
974a6ff5
KH
1195 else if ((! SINGLE_BYTE_CHAR_P (c)
1196 && NILP (current_buffer->enable_multibyte_characters)))
dc2a0b79
RS
1197 {
1198 /* When multibyte is disabled,
1199 print multibyte string chars using hex escapes. */
1200 unsigned char outbuf[50];
1201 sprintf (outbuf, "\\x%x", c);
1202 strout (outbuf, -1, -1, printcharfun, 0);
453fa987 1203 need_nonhex = 1;
dc2a0b79 1204 }
974a6ff5
KH
1205 else if (SINGLE_BYTE_CHAR_P (c)
1206 && ! ASCII_BYTE_P (c)
1207 && ! NILP (current_buffer->enable_multibyte_characters))
1208 {
1209 /* When multibyte is enabled,
1210 print single-byte non-ASCII string chars
1211 using octal escapes. */
1212 unsigned char outbuf[5];
1213 sprintf (outbuf, "\\%03o", c);
1214 strout (outbuf, -1, -1, printcharfun, 0);
1215 }
38010d50
JB
1216 else
1217 {
453fa987
RS
1218 /* If we just had a hex escape, and this character
1219 could be taken as part of it,
1220 output `\ ' to prevent that. */
1221 if (need_nonhex
1222 && ((c >= 'a' && c <= 'f')
1223 || (c >= 'A' && c <= 'F')
1224 || (c >= '0' && c <= '9')))
1225 strout ("\\ ", -1, -1, printcharfun, 0);
1226
38010d50
JB
1227 if (c == '\"' || c == '\\')
1228 PRINTCHAR ('\\');
1229 PRINTCHAR (c);
1230 }
1231 }
1232 PRINTCHAR ('\"');
7651e1f5
RS
1233
1234#ifdef USE_TEXT_PROPERTIES
1235 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1236 {
7651e1f5
RS
1237 traverse_intervals (XSTRING (obj)->intervals,
1238 0, 0, print_interval, printcharfun);
1239 PRINTCHAR (')');
1240 }
1241#endif
1242
38010d50
JB
1243 UNGCPRO;
1244 }
ca0569ad 1245 break;
38010d50 1246
ca0569ad
RS
1247 case Lisp_Symbol:
1248 {
1249 register int confusing;
1250 register unsigned char *p = XSYMBOL (obj)->name->data;
fc932ac6 1251 register unsigned char *end = p + STRING_BYTES (XSYMBOL (obj)->name);
2190a05e 1252 register int c;
dc2a0b79
RS
1253 int i, i_byte, size_byte;
1254 Lisp_Object name;
1255
1256 XSETSTRING (name, XSYMBOL (obj)->name);
ca0569ad
RS
1257
1258 if (p != end && (*p == '-' || *p == '+')) p++;
1259 if (p == end)
1260 confusing = 0;
d27497e3
RS
1261 /* If symbol name begins with a digit, and ends with a digit,
1262 and contains nothing but digits and `e', it could be treated
1263 as a number. So set CONFUSING.
1264
1265 Symbols that contain periods could also be taken as numbers,
1266 but periods are always escaped, so we don't have to worry
1267 about them here. */
1268 else if (*p >= '0' && *p <= '9'
1269 && end[-1] >= '0' && end[-1] <= '9')
ca0569ad 1270 {
e837058b
RS
1271 while (p != end && ((*p >= '0' && *p <= '9')
1272 /* Needed for \2e10. */
1273 || *p == 'e'))
ca0569ad
RS
1274 p++;
1275 confusing = (end == p);
1276 }
d27497e3
RS
1277 else
1278 confusing = 0;
ca0569ad 1279
081e0581
EN
1280 /* If we print an uninterned symbol as part of a complex object and
1281 the flag print-gensym is non-nil, prefix it with #n= to read the
1282 object back with the #n# reader syntax later if needed. */
e0f69431 1283 if (! NILP (Vprint_gensym) && NILP (XSYMBOL (obj)->obarray))
081e0581
EN
1284 {
1285 if (print_depth > 1)
1286 {
1287 Lisp_Object tem;
e0f69431 1288 tem = Fassq (obj, Vprint_gensym_alist);
081e0581
EN
1289 if (CONSP (tem))
1290 {
1291 PRINTCHAR ('#');
1292 print (XCDR (tem), printcharfun, escapeflag);
1293 PRINTCHAR ('#');
1294 break;
1295 }
1296 else
1297 {
e0f69431
RS
1298 if (CONSP (Vprint_gensym_alist))
1299 XSETFASTINT (tem, XFASTINT (XCDR (XCAR (Vprint_gensym_alist))) + 1);
081e0581
EN
1300 else
1301 XSETFASTINT (tem, 1);
e0f69431 1302 Vprint_gensym_alist = Fcons (Fcons (obj, tem), Vprint_gensym_alist);
081e0581
EN
1303
1304 PRINTCHAR ('#');
1305 print (tem, printcharfun, escapeflag);
1306 PRINTCHAR ('=');
1307 }
1308 }
1309 PRINTCHAR ('#');
1310 PRINTCHAR (':');
1311 }
1312
fc932ac6 1313 size_byte = STRING_BYTES (XSTRING (name));
dc2a0b79
RS
1314
1315 for (i = 0, i_byte = 0; i_byte < size_byte;)
ca0569ad 1316 {
6ddd6eee
RS
1317 /* Here, we must convert each multi-byte form to the
1318 corresponding character code before handing it to PRINTCHAR. */
dc2a0b79
RS
1319
1320 if (STRING_MULTIBYTE (name))
1321 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1322 else
1323 c = XSTRING (name)->data[i_byte++];
1324
ca0569ad 1325 QUIT;
09eddb56 1326
ca0569ad
RS
1327 if (escapeflag)
1328 {
09eddb56
RS
1329 if (c == '\"' || c == '\\' || c == '\''
1330 || c == ';' || c == '#' || c == '(' || c == ')'
1331 || c == ',' || c =='.' || c == '`'
1332 || c == '[' || c == ']' || c == '?' || c <= 040
1333 || confusing)
ca0569ad
RS
1334 PRINTCHAR ('\\'), confusing = 0;
1335 }
1336 PRINTCHAR (c);
1337 }
1338 }
1339 break;
1340
1341 case Lisp_Cons:
38010d50 1342 /* If deeper than spec'd depth, print placeholder. */
d4ae1f7e 1343 if (INTEGERP (Vprint_level)
38010d50 1344 && print_depth > XINT (Vprint_level))
dc2a0b79 1345 strout ("...", -1, -1, printcharfun, 0);
2f100b5c
EN
1346 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1347 && (EQ (XCAR (obj), Qquote)))
1348 {
1349 PRINTCHAR ('\'');
1350 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1351 }
1352 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1353 && (EQ (XCAR (obj), Qfunction)))
1354 {
1355 PRINTCHAR ('#');
1356 PRINTCHAR ('\'');
1357 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1358 }
1359 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1360 && ((EQ (XCAR (obj), Qbackquote)
1361 || EQ (XCAR (obj), Qcomma)
1362 || EQ (XCAR (obj), Qcomma_at)
1363 || EQ (XCAR (obj), Qcomma_dot))))
1364 {
1365 print (XCAR (obj), printcharfun, 0);
1366 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1367 }
e0f93814 1368 else
38010d50 1369 {
e0f93814 1370 PRINTCHAR ('(');
38010d50 1371 {
e0f93814
KH
1372 register int i = 0;
1373 register int max = 0;
1374
1375 if (INTEGERP (Vprint_length))
1376 max = XINT (Vprint_length);
1377 /* Could recognize circularities in cdrs here,
1378 but that would make printing of long lists quadratic.
1379 It's not worth doing. */
1380 while (CONSP (obj))
38010d50 1381 {
e0f93814
KH
1382 if (i++)
1383 PRINTCHAR (' ');
1384 if (max && i > max)
1385 {
dc2a0b79 1386 strout ("...", 3, 3, printcharfun, 0);
e0f93814
KH
1387 break;
1388 }
2f100b5c
EN
1389 print (XCAR (obj), printcharfun, escapeflag);
1390 obj = XCDR (obj);
38010d50 1391 }
38010d50 1392 }
2f100b5c 1393 if (!NILP (obj))
e0f93814 1394 {
dc2a0b79 1395 strout (" . ", 3, 3, printcharfun, 0);
e0f93814
KH
1396 print (obj, printcharfun, escapeflag);
1397 }
1398 PRINTCHAR (')');
38010d50 1399 }
ca0569ad
RS
1400 break;
1401
1402 case Lisp_Vectorlike:
1403 if (PROCESSP (obj))
1404 {
1405 if (escapeflag)
1406 {
dc2a0b79 1407 strout ("#<process ", -1, -1, printcharfun, 0);
ca0569ad
RS
1408 print_string (XPROCESS (obj)->name, printcharfun);
1409 PRINTCHAR ('>');
1410 }
1411 else
1412 print_string (XPROCESS (obj)->name, printcharfun);
1413 }
ed2c35ef
RS
1414 else if (BOOL_VECTOR_P (obj))
1415 {
1416 register int i;
1417 register unsigned char c;
1418 struct gcpro gcpro1;
ed2c35ef 1419 int size_in_chars
1bad7c59 1420 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
ed2c35ef
RS
1421
1422 GCPRO1 (obj);
1423
1424 PRINTCHAR ('#');
1425 PRINTCHAR ('&');
1426 sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
dc2a0b79 1427 strout (buf, -1, -1, printcharfun, 0);
ed2c35ef 1428 PRINTCHAR ('\"');
a40384bc
RS
1429
1430 /* Don't print more characters than the specified maximum. */
1431 if (INTEGERP (Vprint_length)
1432 && XINT (Vprint_length) < size_in_chars)
1433 size_in_chars = XINT (Vprint_length);
1434
ed2c35ef
RS
1435 for (i = 0; i < size_in_chars; i++)
1436 {
1437 QUIT;
1438 c = XBOOL_VECTOR (obj)->data[i];
1439 if (c == '\n' && print_escape_newlines)
1440 {
1441 PRINTCHAR ('\\');
1442 PRINTCHAR ('n');
1443 }
1444 else if (c == '\f' && print_escape_newlines)
1445 {
1446 PRINTCHAR ('\\');
1447 PRINTCHAR ('f');
1448 }
1449 else
1450 {
1451 if (c == '\"' || c == '\\')
1452 PRINTCHAR ('\\');
1453 PRINTCHAR (c);
1454 }
1455 }
1456 PRINTCHAR ('\"');
1457
1458 UNGCPRO;
1459 }
ca0569ad
RS
1460 else if (SUBRP (obj))
1461 {
dc2a0b79
RS
1462 strout ("#<subr ", -1, -1, printcharfun, 0);
1463 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun, 0);
ca0569ad
RS
1464 PRINTCHAR ('>');
1465 }
1466#ifndef standalone
1467 else if (WINDOWP (obj))
1468 {
dc2a0b79 1469 strout ("#<window ", -1, -1, printcharfun, 0);
ca0569ad 1470 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number));
dc2a0b79 1471 strout (buf, -1, -1, printcharfun, 0);
ca0569ad
RS
1472 if (!NILP (XWINDOW (obj)->buffer))
1473 {
dc2a0b79 1474 strout (" on ", -1, -1, printcharfun, 0);
ca0569ad
RS
1475 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
1476 }
1477 PRINTCHAR ('>');
1478 }
908b0ae5
RS
1479 else if (BUFFERP (obj))
1480 {
1481 if (NILP (XBUFFER (obj)->name))
dc2a0b79 1482 strout ("#<killed buffer>", -1, -1, printcharfun, 0);
908b0ae5
RS
1483 else if (escapeflag)
1484 {
dc2a0b79 1485 strout ("#<buffer ", -1, -1, printcharfun, 0);
908b0ae5
RS
1486 print_string (XBUFFER (obj)->name, printcharfun);
1487 PRINTCHAR ('>');
1488 }
1489 else
1490 print_string (XBUFFER (obj)->name, printcharfun);
1491 }
ca0569ad
RS
1492 else if (WINDOW_CONFIGURATIONP (obj))
1493 {
dc2a0b79 1494 strout ("#<window-configuration>", -1, -1, printcharfun, 0);
ca0569ad 1495 }
ca0569ad
RS
1496 else if (FRAMEP (obj))
1497 {
1498 strout ((FRAME_LIVE_P (XFRAME (obj))
1499 ? "#<frame " : "#<dead frame "),
dc2a0b79 1500 -1, -1, printcharfun, 0);
ca0569ad 1501 print_string (XFRAME (obj)->name, printcharfun);
dc2a0b79
RS
1502 sprintf (buf, " 0x%lx\\ ", (unsigned long) (XFRAME (obj)));
1503 strout (buf, -1, -1, printcharfun, 0);
ca0569ad
RS
1504 PRINTCHAR ('>');
1505 }
ca0569ad
RS
1506#endif /* not standalone */
1507 else
1508 {
1509 int size = XVECTOR (obj)->size;
1510 if (COMPILEDP (obj))
1511 {
1512 PRINTCHAR ('#');
1513 size &= PSEUDOVECTOR_SIZE_MASK;
1514 }
ed2c35ef
RS
1515 if (CHAR_TABLE_P (obj))
1516 {
1517 /* We print a char-table as if it were a vector,
1518 lumping the parent and default slots in with the
1519 character slots. But we add #^ as a prefix. */
1520 PRINTCHAR ('#');
1521 PRINTCHAR ('^');
3701b5de
KH
1522 if (SUB_CHAR_TABLE_P (obj))
1523 PRINTCHAR ('^');
ed2c35ef
RS
1524 size &= PSEUDOVECTOR_SIZE_MASK;
1525 }
00d76abc
KH
1526 if (size & PSEUDOVECTOR_FLAG)
1527 goto badtype;
ca0569ad
RS
1528
1529 PRINTCHAR ('[');
38010d50 1530 {
ca0569ad
RS
1531 register int i;
1532 register Lisp_Object tem;
a40384bc
RS
1533
1534 /* Don't print more elements than the specified maximum. */
1535 if (INTEGERP (Vprint_length)
1536 && XINT (Vprint_length) < size)
1537 size = XINT (Vprint_length);
1538
ca0569ad
RS
1539 for (i = 0; i < size; i++)
1540 {
1541 if (i) PRINTCHAR (' ');
1542 tem = XVECTOR (obj)->contents[i];
1543 print (tem, printcharfun, escapeflag);
1544 }
38010d50 1545 }
ca0569ad
RS
1546 PRINTCHAR (']');
1547 }
1548 break;
1549
38010d50 1550#ifndef standalone
ca0569ad 1551 case Lisp_Misc:
5db20f08 1552 switch (XMISCTYPE (obj))
38010d50 1553 {
00d76abc 1554 case Lisp_Misc_Marker:
dc2a0b79 1555 strout ("#<marker ", -1, -1, printcharfun, 0);
087e3c46
KH
1556 /* Do you think this is necessary? */
1557 if (XMARKER (obj)->insertion_type != 0)
dc2a0b79 1558 strout ("(before-insertion) ", -1, -1, printcharfun, 0);
ca0569ad 1559 if (!(XMARKER (obj)->buffer))
dc2a0b79 1560 strout ("in no buffer", -1, -1, printcharfun, 0);
ca0569ad
RS
1561 else
1562 {
1563 sprintf (buf, "at %d", marker_position (obj));
dc2a0b79
RS
1564 strout (buf, -1, -1, printcharfun, 0);
1565 strout (" in ", -1, -1, printcharfun, 0);
ca0569ad
RS
1566 print_string (XMARKER (obj)->buffer->name, printcharfun);
1567 }
38010d50 1568 PRINTCHAR ('>');
908b0ae5 1569 break;
00d76abc
KH
1570
1571 case Lisp_Misc_Overlay:
dc2a0b79 1572 strout ("#<overlay ", -1, -1, printcharfun, 0);
ca0569ad 1573 if (!(XMARKER (OVERLAY_START (obj))->buffer))
dc2a0b79 1574 strout ("in no buffer", -1, -1, printcharfun, 0);
ca0569ad
RS
1575 else
1576 {
1577 sprintf (buf, "from %d to %d in ",
1578 marker_position (OVERLAY_START (obj)),
1579 marker_position (OVERLAY_END (obj)));
dc2a0b79 1580 strout (buf, -1, -1, printcharfun, 0);
ca0569ad
RS
1581 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
1582 printcharfun);
1583 }
1584 PRINTCHAR ('>');
908b0ae5 1585 break;
00d76abc
KH
1586
1587 /* Remaining cases shouldn't happen in normal usage, but let's print
1588 them anyway for the benefit of the debugger. */
1589 case Lisp_Misc_Free:
dc2a0b79 1590 strout ("#<misc free cell>", -1, -1, printcharfun, 0);
00d76abc
KH
1591 break;
1592
1593 case Lisp_Misc_Intfwd:
1594 sprintf (buf, "#<intfwd to %d>", *XINTFWD (obj)->intvar);
dc2a0b79 1595 strout (buf, -1, -1, printcharfun, 0);
00d76abc
KH
1596 break;
1597
1598 case Lisp_Misc_Boolfwd:
1599 sprintf (buf, "#<boolfwd to %s>",
1600 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
dc2a0b79 1601 strout (buf, -1, -1, printcharfun, 0);
00d76abc
KH
1602 break;
1603
1604 case Lisp_Misc_Objfwd:
dc2a0b79 1605 strout ("#<objfwd to ", -1, -1, printcharfun, 0);
00d76abc
KH
1606 print (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
1607 PRINTCHAR ('>');
1608 break;
1609
1610 case Lisp_Misc_Buffer_Objfwd:
dc2a0b79 1611 strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
3ac613c1
KH
1612 print (*(Lisp_Object *)((char *)current_buffer
1613 + XBUFFER_OBJFWD (obj)->offset),
1614 printcharfun, escapeflag);
1615 PRINTCHAR ('>');
1616 break;
1617
fb917148 1618 case Lisp_Misc_Kboard_Objfwd:
dc2a0b79 1619 strout ("#<kboard_objfwd to ", -1, -1, printcharfun, 0);
fb917148
KH
1620 print (*(Lisp_Object *)((char *) current_kboard
1621 + XKBOARD_OBJFWD (obj)->offset),
7ae137a9 1622 printcharfun, escapeflag);
00d76abc
KH
1623 PRINTCHAR ('>');
1624 break;
1625
1626 case Lisp_Misc_Buffer_Local_Value:
dc2a0b79 1627 strout ("#<buffer_local_value ", -1, -1, printcharfun, 0);
00d76abc
KH
1628 goto do_buffer_local;
1629 case Lisp_Misc_Some_Buffer_Local_Value:
dc2a0b79 1630 strout ("#<some_buffer_local_value ", -1, -1, printcharfun, 0);
00d76abc 1631 do_buffer_local:
dc2a0b79 1632 strout ("[realvalue] ", -1, -1, printcharfun, 0);
03153771
RS
1633 print (XBUFFER_LOCAL_VALUE (obj)->realvalue, printcharfun, escapeflag);
1634 if (XBUFFER_LOCAL_VALUE (obj)->found_for_buffer)
1635 strout ("[local in buffer] ", -1, -1, printcharfun, 0);
1636 else
1637 strout ("[buffer] ", -1, -1, printcharfun, 0);
1638 print (XBUFFER_LOCAL_VALUE (obj)->buffer,
00d76abc 1639 printcharfun, escapeflag);
03153771
RS
1640 if (XBUFFER_LOCAL_VALUE (obj)->check_frame)
1641 {
1642 if (XBUFFER_LOCAL_VALUE (obj)->found_for_frame)
1643 strout ("[local in frame] ", -1, -1, printcharfun, 0);
1644 else
1645 strout ("[frame] ", -1, -1, printcharfun, 0);
1646 print (XBUFFER_LOCAL_VALUE (obj)->frame,
1647 printcharfun, escapeflag);
1648 }
dc2a0b79 1649 strout ("[alist-elt] ", -1, -1, printcharfun, 0);
03153771 1650 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->car,
00d76abc 1651 printcharfun, escapeflag);
dc2a0b79 1652 strout ("[default-value] ", -1, -1, printcharfun, 0);
03153771 1653 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->cdr,
00d76abc
KH
1654 printcharfun, escapeflag);
1655 PRINTCHAR ('>');
1656 break;
1657
1658 default:
1659 goto badtype;
e0f93814 1660 }
00d76abc 1661 break;
38010d50 1662#endif /* standalone */
ca0569ad
RS
1663
1664 default:
00d76abc 1665 badtype:
ca0569ad
RS
1666 {
1667 /* We're in trouble if this happens!
1668 Probably should just abort () */
dc2a0b79 1669 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun, 0);
00d76abc 1670 if (MISCP (obj))
5db20f08 1671 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
00d76abc
KH
1672 else if (VECTORLIKEP (obj))
1673 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
1674 else
1675 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
dc2a0b79 1676 strout (buf, -1, -1, printcharfun, 0);
ca0569ad 1677 strout (" Save your buffers immediately and please report this bug>",
dc2a0b79 1678 -1, -1, printcharfun, 0);
ca0569ad 1679 }
38010d50
JB
1680 }
1681
1682 print_depth--;
1683}
1684\f
7651e1f5
RS
1685#ifdef USE_TEXT_PROPERTIES
1686
1687/* Print a description of INTERVAL using PRINTCHARFUN.
1688 This is part of printing a string that has text properties. */
1689
1690void
1691print_interval (interval, printcharfun)
1692 INTERVAL interval;
1693 Lisp_Object printcharfun;
1694{
30503c0b 1695 PRINTCHAR (' ');
7651e1f5
RS
1696 print (make_number (interval->position), printcharfun, 1);
1697 PRINTCHAR (' ');
1698 print (make_number (interval->position + LENGTH (interval)),
1699 printcharfun, 1);
1700 PRINTCHAR (' ');
1701 print (interval->plist, printcharfun, 1);
7651e1f5
RS
1702}
1703
1704#endif /* USE_TEXT_PROPERTIES */
1705\f
38010d50
JB
1706void
1707syms_of_print ()
1708{
38010d50
JB
1709 DEFVAR_LISP ("standard-output", &Vstandard_output,
1710 "Output stream `print' uses by default for outputting a character.\n\
1711This may be any function of one argument.\n\
1712It may also be a buffer (output is inserted before point)\n\
1713or a marker (output is inserted and the marker is advanced)\n\
113620cc 1714or the symbol t (output appears in the echo area).");
38010d50
JB
1715 Vstandard_output = Qt;
1716 Qstandard_output = intern ("standard-output");
1717 staticpro (&Qstandard_output);
1718
1719#ifdef LISP_FLOAT_TYPE
1720 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
06ef7355 1721 "The format descriptor string used to print floats.\n\
38010d50
JB
1722This is a %-spec like those accepted by `printf' in C,\n\
1723but with some restrictions. It must start with the two characters `%.'.\n\
1724After that comes an integer precision specification,\n\
1725and then a letter which controls the format.\n\
1726The letters allowed are `e', `f' and `g'.\n\
1727Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\
1728Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\
1729Use `g' to choose the shorter of those two formats for the number at hand.\n\
1730The precision in any of these cases is the number of digits following\n\
1731the decimal point. With `f', a precision of 0 means to omit the\n\
c7b14277 1732decimal point. 0 is not allowed with `e' or `g'.\n\n\
f356c3fb
PE
1733A value of nil means to use the shortest notation\n\
1734that represents the number without losing information.");
38010d50
JB
1735 Vfloat_output_format = Qnil;
1736 Qfloat_output_format = intern ("float-output-format");
1737 staticpro (&Qfloat_output_format);
1738#endif /* LISP_FLOAT_TYPE */
1739
1740 DEFVAR_LISP ("print-length", &Vprint_length,
aa734e17 1741 "Maximum length of list to print before abbreviating.\n\
38010d50
JB
1742A value of nil means no limit.");
1743 Vprint_length = Qnil;
1744
1745 DEFVAR_LISP ("print-level", &Vprint_level,
aa734e17 1746 "Maximum depth of list nesting to print before abbreviating.\n\
38010d50
JB
1747A value of nil means no limit.");
1748 Vprint_level = Qnil;
1749
1750 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
a8920a17 1751 "Non-nil means print newlines in strings as backslash-n.\n\
c6f7982f 1752Also print formfeeds as backslash-f.");
38010d50
JB
1753 print_escape_newlines = 0;
1754
2f100b5c
EN
1755 DEFVAR_BOOL ("print-quoted", &print_quoted,
1756 "Non-nil means print quoted forms with reader syntax.\n\
1757I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and, backquoted\n\
1758forms print in the new syntax.");
1759 print_quoted = 0;
1760
e0f69431 1761 DEFVAR_LISP ("print-gensym", &Vprint_gensym,
081e0581 1762 "Non-nil means print uninterned symbols so they will read as uninterned.\n\
265375e7 1763I.e., the value of (make-symbol \"foobar\") prints as #:foobar.\n\
e0f69431
RS
1764When the uninterned symbol appears within a larger data structure,\n\
1765in addition use the #...# and #...= constructs as needed,\n\
1766so that multiple references to the same symbol are shared once again\n\
1767when the text is read back.\n\
1768\n\
1769If the value of `print-gensym' is a cons cell, then in addition refrain from\n\
1770clearing `print-gensym-alist' on entry to and exit from printing functions,\n\
1771so that the use of #...# and #...= can carry over for several separately\n\
1772printed objects.");
1773 Vprint_gensym = Qnil;
1774
1775 DEFVAR_LISP ("print-gensym-alist", &Vprint_gensym_alist,
1776 "Association list of elements (GENSYM . N) to guide use of #N# and #N=.\n\
1777In each element, GENSYM is an uninterned symbol that has been associated\n\
1778with #N= for the specified value of N.");
1779 Vprint_gensym_alist = Qnil;
081e0581 1780
38010d50
JB
1781 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
1782 staticpro (&Vprin1_to_string_buffer);
1783
1784 defsubr (&Sprin1);
1785 defsubr (&Sprin1_to_string);
113620cc 1786 defsubr (&Serror_message_string);
38010d50
JB
1787 defsubr (&Sprinc);
1788 defsubr (&Sprint);
1789 defsubr (&Sterpri);
1790 defsubr (&Swrite_char);
1791 defsubr (&Sexternal_debugging_output);
1792
1793 Qexternal_debugging_output = intern ("external-debugging-output");
1794 staticpro (&Qexternal_debugging_output);
1795
2f100b5c
EN
1796 Qprint_escape_newlines = intern ("print-escape-newlines");
1797 staticpro (&Qprint_escape_newlines);
1798
38010d50
JB
1799#ifndef standalone
1800 defsubr (&Swith_output_to_temp_buffer);
1801#endif /* not standalone */
1802}