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