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