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