(feedmail-message-id-generator, feedmail-date-generator): Fix custom types.
[emacs.git] / src / print.c
blobe3f60e06fcc78dea565a95e33e05390fccbaa06a
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.
6 This file is part of GNU Emacs.
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 2, or (at your option)
11 any later version.
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.
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. */
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"
37 Lisp_Object Vstandard_output, Qstandard_output;
39 Lisp_Object Qtemp_buffer_setup_hook;
41 /* These are used to print like we read. */
42 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
44 Lisp_Object Vfloat_output_format, Qfloat_output_format;
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
56 #include <math.h>
58 #if STDC_HEADERS
59 #include <float.h>
60 #endif
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
72 #ifndef DBL_MIN
73 #define DBL_MIN 2.2250738585072014e-308
74 #endif
76 #ifdef DBL_MIN_REPLACEMENT
77 #undef DBL_MIN
78 #define DBL_MIN DBL_MIN_REPLACEMENT
79 #endif
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
92 /* Avoid actual stack overflow in print. */
93 int print_depth;
95 /* Nonzero if inside outputting backquote in old style. */
96 int old_backquote_output;
98 /* Detect most circularities to print finite output. */
99 #define PRINT_CIRCLE 200
100 Lisp_Object being_printed[PRINT_CIRCLE];
102 /* When printing into a buffer, first we put the text in this
103 block, then insert it all at once. */
104 char *print_buffer;
106 /* Size allocated in print_buffer. */
107 int print_buffer_size;
108 /* Chars stored in print_buffer. */
109 int print_buffer_pos;
110 /* Bytes stored in print_buffer. */
111 int print_buffer_pos_byte;
113 /* Maximum length of list to print in full; noninteger means
114 effectively infinity */
116 Lisp_Object Vprint_length;
118 /* Maximum depth of list to print in full; noninteger means
119 effectively infinity. */
121 Lisp_Object Vprint_level;
123 /* Nonzero means print newlines in strings as \n. */
125 int print_escape_newlines;
127 /* Nonzero means to print single-byte non-ascii characters in strings as
128 octal escapes. */
130 int print_escape_nonascii;
132 /* Nonzero means to print multibyte characters in strings as hex escapes. */
134 int print_escape_multibyte;
136 Lisp_Object Qprint_escape_newlines;
137 Lisp_Object Qprint_escape_multibyte, Qprint_escape_nonascii;
139 /* Nonzero means print (quote foo) forms as 'foo, etc. */
141 int print_quoted;
143 /* Non-nil means print #: before uninterned symbols. */
145 Lisp_Object Vprint_gensym;
147 /* Non-nil means print recursive structures using #n= and #n# syntax. */
149 Lisp_Object Vprint_circle;
151 /* Non-nil means keep continuous number for #n= and #n# syntax
152 between several print functions. */
154 Lisp_Object Vprint_continuous_numbering;
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. */
162 int print_number_index;
163 Lisp_Object Vprint_number_table;
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]
171 /* Nonzero means print newline to stdout before next minibuffer message.
172 Defined in xdisp.c */
174 extern int noninteractive_need_newline;
176 extern int minibuffer_auto_raise;
178 #ifdef MAX_PRINT_CHARS
179 static int print_chars;
180 static int max_print;
181 #endif /* MAX_PRINT_CHARS */
183 void print_interval ();
185 /* GDB resets this to zero on W32 to disable OutputDebugString calls. */
186 int print_output_debug_flag = 1;
189 /* Low level output routines for characters and strings */
191 /* Lisp functions to do output using a stream
192 must have the stream in a variable called printcharfun
193 and must start with PRINTPREPARE, end with PRINTFINISH,
194 and use PRINTDECLARE to declare common variables.
195 Use PRINTCHAR to output one character,
196 or call strout to output a block of characters. */
198 #define PRINTDECLARE \
199 struct buffer *old = current_buffer; \
200 int old_point = -1, start_point = -1; \
201 int old_point_byte = -1, start_point_byte = -1; \
202 int specpdl_count = SPECPDL_INDEX (); \
203 int free_print_buffer = 0; \
204 int multibyte = !NILP (current_buffer->enable_multibyte_characters); \
205 Lisp_Object original
207 #define PRINTPREPARE \
208 original = printcharfun; \
209 if (NILP (printcharfun)) printcharfun = Qt; \
210 if (BUFFERP (printcharfun)) \
212 if (XBUFFER (printcharfun) != current_buffer) \
213 Fset_buffer (printcharfun); \
214 printcharfun = Qnil; \
216 if (MARKERP (printcharfun)) \
218 EMACS_INT marker_pos; \
219 if (! XMARKER (printcharfun)->buffer) \
220 error ("Marker does not point anywhere"); \
221 if (XMARKER (printcharfun)->buffer != current_buffer) \
222 set_buffer_internal (XMARKER (printcharfun)->buffer); \
223 marker_pos = marker_position (printcharfun); \
224 if (marker_pos < BEGV || marker_pos > ZV) \
225 error ("Marker is outside the accessible part of the buffer"); \
226 old_point = PT; \
227 old_point_byte = PT_BYTE; \
228 SET_PT_BOTH (marker_pos, \
229 marker_byte_position (printcharfun)); \
230 start_point = PT; \
231 start_point_byte = PT_BYTE; \
232 printcharfun = Qnil; \
234 if (NILP (printcharfun)) \
236 Lisp_Object string; \
237 if (NILP (current_buffer->enable_multibyte_characters) \
238 && ! print_escape_multibyte) \
239 specbind (Qprint_escape_multibyte, Qt); \
240 if (! NILP (current_buffer->enable_multibyte_characters) \
241 && ! print_escape_nonascii) \
242 specbind (Qprint_escape_nonascii, Qt); \
243 if (print_buffer != 0) \
245 string = make_string_from_bytes (print_buffer, \
246 print_buffer_pos, \
247 print_buffer_pos_byte); \
248 record_unwind_protect (print_unwind, string); \
250 else \
252 print_buffer_size = 1000; \
253 print_buffer = (char *) xmalloc (print_buffer_size); \
254 free_print_buffer = 1; \
256 print_buffer_pos = 0; \
257 print_buffer_pos_byte = 0; \
259 if (EQ (printcharfun, Qt) && ! noninteractive) \
260 setup_echo_area_for_printing (multibyte);
262 #define PRINTFINISH \
263 if (NILP (printcharfun)) \
265 if (print_buffer_pos != print_buffer_pos_byte \
266 && NILP (current_buffer->enable_multibyte_characters)) \
268 unsigned char *temp \
269 = (unsigned char *) alloca (print_buffer_pos + 1); \
270 copy_text (print_buffer, temp, print_buffer_pos_byte, \
271 1, 0); \
272 insert_1_both (temp, print_buffer_pos, \
273 print_buffer_pos, 0, 1, 0); \
275 else \
276 insert_1_both (print_buffer, print_buffer_pos, \
277 print_buffer_pos_byte, 0, 1, 0); \
278 signal_after_change (PT - print_buffer_pos, 0, print_buffer_pos);\
280 if (free_print_buffer) \
282 xfree (print_buffer); \
283 print_buffer = 0; \
285 unbind_to (specpdl_count, Qnil); \
286 if (MARKERP (original)) \
287 set_marker_both (original, Qnil, PT, PT_BYTE); \
288 if (old_point >= 0) \
289 SET_PT_BOTH (old_point + (old_point >= start_point \
290 ? PT - start_point : 0), \
291 old_point_byte + (old_point_byte >= start_point_byte \
292 ? PT_BYTE - start_point_byte : 0)); \
293 if (old != current_buffer) \
294 set_buffer_internal (old);
296 #define PRINTCHAR(ch) printchar (ch, printcharfun)
298 /* This is used to restore the saved contents of print_buffer
299 when there is a recursive call to print. */
301 static Lisp_Object
302 print_unwind (saved_text)
303 Lisp_Object saved_text;
305 bcopy (SDATA (saved_text), print_buffer, SCHARS (saved_text));
306 return Qnil;
310 /* Print character CH using method FUN. FUN nil means print to
311 print_buffer. FUN t means print to echo area or stdout if
312 non-interactive. If FUN is neither nil nor t, call FUN with CH as
313 argument. */
315 static void
316 printchar (ch, fun)
317 unsigned int ch;
318 Lisp_Object fun;
320 #ifdef MAX_PRINT_CHARS
321 if (max_print)
322 print_chars++;
323 #endif /* MAX_PRINT_CHARS */
325 if (!NILP (fun) && !EQ (fun, Qt))
326 call1 (fun, make_number (ch));
327 else
329 unsigned char str[MAX_MULTIBYTE_LENGTH];
330 int len = CHAR_STRING (ch, str);
332 QUIT;
334 if (NILP (fun))
336 if (print_buffer_pos_byte + len >= print_buffer_size)
337 print_buffer = (char *) xrealloc (print_buffer,
338 print_buffer_size *= 2);
339 bcopy (str, print_buffer + print_buffer_pos_byte, len);
340 print_buffer_pos += 1;
341 print_buffer_pos_byte += len;
343 else if (noninteractive)
345 fwrite (str, 1, len, stdout);
346 noninteractive_need_newline = 1;
348 else
350 int multibyte_p
351 = !NILP (current_buffer->enable_multibyte_characters);
353 setup_echo_area_for_printing (multibyte_p);
354 insert_char (ch);
355 message_dolog (str, len, 0, multibyte_p);
361 /* Output SIZE characters, SIZE_BYTE bytes from string PTR using
362 method PRINTCHARFUN. If SIZE < 0, use the string length of PTR for
363 both SIZE and SIZE_BYTE. PRINTCHARFUN nil means output to
364 print_buffer. PRINTCHARFUN t means output to the echo area or to
365 stdout if non-interactive. If neither nil nor t, call Lisp
366 function PRINTCHARFUN for each character printed. MULTIBYTE
367 non-zero means PTR contains multibyte characters.
369 In the case where PRINTCHARFUN is nil, it is safe for PTR to point
370 to data in a Lisp string. Otherwise that is not safe. */
372 static void
373 strout (ptr, size, size_byte, printcharfun, multibyte)
374 char *ptr;
375 int size, size_byte;
376 Lisp_Object printcharfun;
377 int multibyte;
379 if (size < 0)
380 size_byte = size = strlen (ptr);
382 if (NILP (printcharfun))
384 if (print_buffer_pos_byte + size_byte > print_buffer_size)
386 print_buffer_size = print_buffer_size * 2 + size_byte;
387 print_buffer = (char *) xrealloc (print_buffer,
388 print_buffer_size);
390 bcopy (ptr, print_buffer + print_buffer_pos_byte, size_byte);
391 print_buffer_pos += size;
392 print_buffer_pos_byte += size_byte;
394 #ifdef MAX_PRINT_CHARS
395 if (max_print)
396 print_chars += size;
397 #endif /* MAX_PRINT_CHARS */
399 else if (noninteractive && EQ (printcharfun, Qt))
401 fwrite (ptr, 1, size_byte, stdout);
402 noninteractive_need_newline = 1;
404 else if (EQ (printcharfun, Qt))
406 /* Output to echo area. We're trying to avoid a little overhead
407 here, that's the reason we don't call printchar to do the
408 job. */
409 int i;
410 int multibyte_p
411 = !NILP (current_buffer->enable_multibyte_characters);
413 setup_echo_area_for_printing (multibyte_p);
414 message_dolog (ptr, size_byte, 0, multibyte_p);
416 if (size == size_byte)
418 for (i = 0; i < size; ++i)
419 insert_char ((unsigned char) *ptr++);
421 else
423 int len;
424 for (i = 0; i < size_byte; i += len)
426 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
427 insert_char (ch);
431 #ifdef MAX_PRINT_CHARS
432 if (max_print)
433 print_chars += size;
434 #endif /* MAX_PRINT_CHARS */
436 else
438 /* PRINTCHARFUN is a Lisp function. */
439 int i = 0;
441 if (size == size_byte)
443 while (i < size_byte)
445 int ch = ptr[i++];
446 PRINTCHAR (ch);
449 else
451 while (i < size_byte)
453 /* Here, we must convert each multi-byte form to the
454 corresponding character code before handing it to
455 PRINTCHAR. */
456 int len;
457 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
458 PRINTCHAR (ch);
459 i += len;
465 /* Print the contents of a string STRING using PRINTCHARFUN.
466 It isn't safe to use strout in many cases,
467 because printing one char can relocate. */
469 static void
470 print_string (string, printcharfun)
471 Lisp_Object string;
472 Lisp_Object printcharfun;
474 if (EQ (printcharfun, Qt) || NILP (printcharfun))
476 int chars;
478 if (STRING_MULTIBYTE (string))
479 chars = SCHARS (string);
480 else if (EQ (printcharfun, Qt)
481 ? ! NILP (buffer_defaults.enable_multibyte_characters)
482 : ! NILP (current_buffer->enable_multibyte_characters))
484 /* If unibyte string STRING contains 8-bit codes, we must
485 convert STRING to a multibyte string containing the same
486 character codes. */
487 Lisp_Object newstr;
488 int bytes;
490 chars = SBYTES (string);
491 bytes = parse_str_to_multibyte (SDATA (string), chars);
492 if (chars < bytes)
494 newstr = make_uninit_multibyte_string (chars, bytes);
495 bcopy (SDATA (string), SDATA (newstr), chars);
496 str_to_multibyte (SDATA (newstr), bytes, chars);
497 string = newstr;
500 else
501 chars = SBYTES (string);
503 if (EQ (printcharfun, Qt))
505 /* Output to echo area. */
506 int nbytes = SBYTES (string);
507 char *buffer;
509 /* Copy the string contents so that relocation of STRING by
510 GC does not cause trouble. */
511 USE_SAFE_ALLOCA;
513 SAFE_ALLOCA (buffer, char *, nbytes);
514 bcopy (SDATA (string), buffer, nbytes);
516 strout (buffer, chars, SBYTES (string),
517 printcharfun, STRING_MULTIBYTE (string));
519 SAFE_FREE ();
521 else
522 /* No need to copy, since output to print_buffer can't GC. */
523 strout (SDATA (string),
524 chars, SBYTES (string),
525 printcharfun, STRING_MULTIBYTE (string));
527 else
529 /* Otherwise, string may be relocated by printing one char.
530 So re-fetch the string address for each character. */
531 int i;
532 int size = SCHARS (string);
533 int size_byte = SBYTES (string);
534 struct gcpro gcpro1;
535 GCPRO1 (string);
536 if (size == size_byte)
537 for (i = 0; i < size; i++)
538 PRINTCHAR (SREF (string, i));
539 else
540 for (i = 0; i < size_byte; )
542 /* Here, we must convert each multi-byte form to the
543 corresponding character code before handing it to PRINTCHAR. */
544 int len;
545 int ch = STRING_CHAR_AND_LENGTH (SDATA (string) + i,
546 size_byte - i, len);
547 if (!CHAR_VALID_P (ch, 0))
549 ch = SREF (string, i);
550 len = 1;
552 PRINTCHAR (ch);
553 i += len;
555 UNGCPRO;
559 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
560 doc: /* Output character CHARACTER to stream PRINTCHARFUN.
561 PRINTCHARFUN defaults to the value of `standard-output' (which see). */)
562 (character, printcharfun)
563 Lisp_Object character, printcharfun;
565 PRINTDECLARE;
567 if (NILP (printcharfun))
568 printcharfun = Vstandard_output;
569 CHECK_NUMBER (character);
570 PRINTPREPARE;
571 PRINTCHAR (XINT (character));
572 PRINTFINISH;
573 return character;
576 /* Used from outside of print.c to print a block of SIZE
577 single-byte chars at DATA on the default output stream.
578 Do not use this on the contents of a Lisp string. */
580 void
581 write_string (data, size)
582 char *data;
583 int size;
585 PRINTDECLARE;
586 Lisp_Object printcharfun;
588 printcharfun = Vstandard_output;
590 PRINTPREPARE;
591 strout (data, size, size, printcharfun, 0);
592 PRINTFINISH;
595 /* Used from outside of print.c to print a block of SIZE
596 single-byte chars at DATA on a specified stream PRINTCHARFUN.
597 Do not use this on the contents of a Lisp string. */
599 void
600 write_string_1 (data, size, printcharfun)
601 char *data;
602 int size;
603 Lisp_Object printcharfun;
605 PRINTDECLARE;
607 PRINTPREPARE;
608 strout (data, size, size, printcharfun, 0);
609 PRINTFINISH;
613 void
614 temp_output_buffer_setup (bufname)
615 const char *bufname;
617 int count = SPECPDL_INDEX ();
618 register struct buffer *old = current_buffer;
619 register Lisp_Object buf;
621 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
623 Fset_buffer (Fget_buffer_create (build_string (bufname)));
625 Fkill_all_local_variables ();
626 delete_all_overlays (current_buffer);
627 current_buffer->directory = old->directory;
628 current_buffer->read_only = Qnil;
629 current_buffer->filename = Qnil;
630 current_buffer->undo_list = Qt;
631 eassert (current_buffer->overlays_before == NULL);
632 eassert (current_buffer->overlays_after == NULL);
633 current_buffer->enable_multibyte_characters
634 = buffer_defaults.enable_multibyte_characters;
635 specbind (Qinhibit_read_only, Qt);
636 specbind (Qinhibit_modification_hooks, Qt);
637 Ferase_buffer ();
638 XSETBUFFER (buf, current_buffer);
640 Frun_hooks (1, &Qtemp_buffer_setup_hook);
642 unbind_to (count, Qnil);
644 specbind (Qstandard_output, buf);
647 Lisp_Object
648 internal_with_output_to_temp_buffer (bufname, function, args)
649 const char *bufname;
650 Lisp_Object (*function) P_ ((Lisp_Object));
651 Lisp_Object args;
653 int count = SPECPDL_INDEX ();
654 Lisp_Object buf, val;
655 struct gcpro gcpro1;
657 GCPRO1 (args);
658 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
659 temp_output_buffer_setup (bufname);
660 buf = Vstandard_output;
661 UNGCPRO;
663 val = (*function) (args);
665 GCPRO1 (val);
666 temp_output_buffer_show (buf);
667 UNGCPRO;
669 return unbind_to (count, val);
672 DEFUN ("with-output-to-temp-buffer",
673 Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer,
674 1, UNEVALLED, 0,
675 doc: /* Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.
676 The buffer is cleared out initially, and marked as unmodified when done.
677 All output done by BODY is inserted in that buffer by default.
678 The buffer is displayed in another window, but not selected.
679 The value of the last form in BODY is returned.
680 If BODY does not finish normally, the buffer BUFNAME is not displayed.
682 The hook `temp-buffer-setup-hook' is run before BODY,
683 with the buffer BUFNAME temporarily current.
684 The hook `temp-buffer-show-hook' is run after the buffer is displayed,
685 with the buffer temporarily current, and the window that was used
686 to display it temporarily selected.
688 If variable `temp-buffer-show-function' is non-nil, call it at the end
689 to get the buffer displayed instead of just displaying the non-selected
690 buffer and calling the hook. It gets one argument, the buffer to display.
692 usage: (with-output-to-temp-buffer BUFNAME BODY ...) */)
693 (args)
694 Lisp_Object args;
696 struct gcpro gcpro1;
697 Lisp_Object name;
698 int count = SPECPDL_INDEX ();
699 Lisp_Object buf, val;
701 GCPRO1(args);
702 name = Feval (Fcar (args));
703 CHECK_STRING (name);
704 temp_output_buffer_setup (SDATA (name));
705 buf = Vstandard_output;
706 UNGCPRO;
708 val = Fprogn (XCDR (args));
710 GCPRO1 (val);
711 temp_output_buffer_show (buf);
712 UNGCPRO;
714 return unbind_to (count, val);
718 static void print ();
719 static void print_preprocess ();
720 static void print_preprocess_string ();
721 static void print_object ();
723 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
724 doc: /* Output a newline to stream PRINTCHARFUN.
725 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used. */)
726 (printcharfun)
727 Lisp_Object printcharfun;
729 PRINTDECLARE;
731 if (NILP (printcharfun))
732 printcharfun = Vstandard_output;
733 PRINTPREPARE;
734 PRINTCHAR ('\n');
735 PRINTFINISH;
736 return Qt;
739 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
740 doc: /* Output the printed representation of OBJECT, any Lisp object.
741 Quoting characters are printed when needed to make output that `read'
742 can handle, whenever this is possible. For complex objects, the behavior
743 is controlled by `print-level' and `print-length', which see.
745 OBJECT is any of the Lisp data types: a number, a string, a symbol,
746 a list, a buffer, a window, a frame, etc.
748 A printed representation of an object is text which describes that object.
750 Optional argument PRINTCHARFUN is the output stream, which can be one
751 of these:
753 - a buffer, in which case output is inserted into that buffer at point;
754 - a marker, in which case output is inserted at marker's position;
755 - a function, in which case that function is called once for each
756 character of OBJECT's printed representation;
757 - a symbol, in which case that symbol's function definition is called; or
758 - t, in which case the output is displayed in the echo area.
760 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
761 is used instead. */)
762 (object, printcharfun)
763 Lisp_Object object, printcharfun;
765 PRINTDECLARE;
767 #ifdef MAX_PRINT_CHARS
768 max_print = 0;
769 #endif /* MAX_PRINT_CHARS */
770 if (NILP (printcharfun))
771 printcharfun = Vstandard_output;
772 PRINTPREPARE;
773 print (object, printcharfun, 1);
774 PRINTFINISH;
775 return object;
778 /* a buffer which is used to hold output being built by prin1-to-string */
779 Lisp_Object Vprin1_to_string_buffer;
781 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
782 doc: /* Return a string containing the printed representation of OBJECT.
783 OBJECT can be any Lisp object. This function outputs quoting characters
784 when necessary to make output that `read' can handle, whenever possible,
785 unless the optional second argument NOESCAPE is non-nil. For complex objects,
786 the behavior is controlled by `print-level' and `print-length', which see.
788 OBJECT is any of the Lisp data types: a number, a string, a symbol,
789 a list, a buffer, a window, a frame, etc.
791 A printed representation of an object is text which describes that object. */)
792 (object, noescape)
793 Lisp_Object object, noescape;
795 Lisp_Object printcharfun;
796 /* struct gcpro gcpro1, gcpro2; */
797 Lisp_Object save_deactivate_mark;
798 int count = specpdl_ptr - specpdl;
799 struct buffer *previous;
801 specbind (Qinhibit_modification_hooks, Qt);
804 PRINTDECLARE;
806 /* Save and restore this--we are altering a buffer
807 but we don't want to deactivate the mark just for that.
808 No need for specbind, since errors deactivate the mark. */
809 save_deactivate_mark = Vdeactivate_mark;
810 /* GCPRO2 (object, save_deactivate_mark); */
811 abort_on_gc++;
813 printcharfun = Vprin1_to_string_buffer;
814 PRINTPREPARE;
815 print (object, printcharfun, NILP (noescape));
816 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
817 PRINTFINISH;
820 previous = current_buffer;
821 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
822 object = Fbuffer_string ();
823 if (SBYTES (object) == SCHARS (object))
824 STRING_SET_UNIBYTE (object);
826 /* Note that this won't make prepare_to_modify_buffer call
827 ask-user-about-supersession-threat because this buffer
828 does not visit a file. */
829 Ferase_buffer ();
830 set_buffer_internal (previous);
832 Vdeactivate_mark = save_deactivate_mark;
833 /* UNGCPRO; */
835 abort_on_gc--;
836 return unbind_to (count, object);
839 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
840 doc: /* Output the printed representation of OBJECT, any Lisp object.
841 No quoting characters are used; no delimiters are printed around
842 the contents of strings.
844 OBJECT is any of the Lisp data types: a number, a string, a symbol,
845 a list, a buffer, a window, a frame, etc.
847 A printed representation of an object is text which describes that object.
849 Optional argument PRINTCHARFUN is the output stream, which can be one
850 of these:
852 - a buffer, in which case output is inserted into that buffer at point;
853 - a marker, in which case output is inserted at marker's position;
854 - a function, in which case that function is called once for each
855 character of OBJECT's printed representation;
856 - a symbol, in which case that symbol's function definition is called; or
857 - t, in which case the output is displayed in the echo area.
859 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
860 is used instead. */)
861 (object, printcharfun)
862 Lisp_Object object, printcharfun;
864 PRINTDECLARE;
866 if (NILP (printcharfun))
867 printcharfun = Vstandard_output;
868 PRINTPREPARE;
869 print (object, printcharfun, 0);
870 PRINTFINISH;
871 return object;
874 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
875 doc: /* Output the printed representation of OBJECT, with newlines around it.
876 Quoting characters are printed when needed to make output that `read'
877 can handle, whenever this is possible. For complex objects, the behavior
878 is controlled by `print-level' and `print-length', which see.
880 OBJECT is any of the Lisp data types: a number, a string, a symbol,
881 a list, a buffer, a window, a frame, etc.
883 A printed representation of an object is text which describes that object.
885 Optional argument PRINTCHARFUN is the output stream, which can be one
886 of these:
888 - a buffer, in which case output is inserted into that buffer at point;
889 - a marker, in which case output is inserted at marker's position;
890 - a function, in which case that function is called once for each
891 character of OBJECT's printed representation;
892 - a symbol, in which case that symbol's function definition is called; or
893 - t, in which case the output is displayed in the echo area.
895 If PRINTCHARFUN is omitted, the value of `standard-output' (which see)
896 is used instead. */)
897 (object, printcharfun)
898 Lisp_Object object, printcharfun;
900 PRINTDECLARE;
901 struct gcpro gcpro1;
903 #ifdef MAX_PRINT_CHARS
904 print_chars = 0;
905 max_print = MAX_PRINT_CHARS;
906 #endif /* MAX_PRINT_CHARS */
907 if (NILP (printcharfun))
908 printcharfun = Vstandard_output;
909 GCPRO1 (object);
910 PRINTPREPARE;
911 PRINTCHAR ('\n');
912 print (object, printcharfun, 1);
913 PRINTCHAR ('\n');
914 PRINTFINISH;
915 #ifdef MAX_PRINT_CHARS
916 max_print = 0;
917 print_chars = 0;
918 #endif /* MAX_PRINT_CHARS */
919 UNGCPRO;
920 return object;
923 /* The subroutine object for external-debugging-output is kept here
924 for the convenience of the debugger. */
925 Lisp_Object Qexternal_debugging_output;
927 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
928 doc: /* Write CHARACTER to stderr.
929 You can call print while debugging emacs, and pass it this function
930 to make it write to the debugging output. */)
931 (character)
932 Lisp_Object character;
934 CHECK_NUMBER (character);
935 putc (XINT (character), stderr);
937 #ifdef WINDOWSNT
938 /* Send the output to a debugger (nothing happens if there isn't one). */
939 if (print_output_debug_flag)
941 char buf[2] = {(char) XINT (character), '\0'};
942 OutputDebugString (buf);
944 #endif
946 return character;
949 /* This function is never called. Its purpose is to prevent
950 print_output_debug_flag from being optimized away. */
952 void
953 debug_output_compilation_hack (x)
954 int x;
956 print_output_debug_flag = x;
959 #if defined (GNU_LINUX)
961 /* This functionality is not vitally important in general, so we rely on
962 non-portable ability to use stderr as lvalue. */
964 #define WITH_REDIRECT_DEBUGGING_OUTPUT 1
966 FILE *initial_stderr_stream = NULL;
968 DEFUN ("redirect-debugging-output", Fredirect_debugging_output, Sredirect_debugging_output,
969 1, 2,
970 "FDebug output file: \nP",
971 doc: /* Redirect debugging output (stderr stream) to file FILE.
972 If FILE is nil, reset target to the initial stderr stream.
973 Optional arg APPEND non-nil (interactively, with prefix arg) means
974 append to existing target file. */)
975 (file, append)
976 Lisp_Object file, append;
978 if (initial_stderr_stream != NULL)
979 fclose (stderr);
980 stderr = initial_stderr_stream;
981 initial_stderr_stream = NULL;
983 if (STRINGP (file))
985 file = Fexpand_file_name (file, Qnil);
986 initial_stderr_stream = stderr;
987 stderr = fopen (SDATA (file), NILP (append) ? "w" : "a");
988 if (stderr == NULL)
990 stderr = initial_stderr_stream;
991 initial_stderr_stream = NULL;
992 report_file_error ("Cannot open debugging output stream",
993 Fcons (file, Qnil));
996 return Qnil;
998 #endif /* GNU_LINUX */
1001 /* This is the interface for debugging printing. */
1003 void
1004 debug_print (arg)
1005 Lisp_Object arg;
1007 Fprin1 (arg, Qexternal_debugging_output);
1008 fprintf (stderr, "\r\n");
1011 void
1012 safe_debug_print (arg)
1013 Lisp_Object arg;
1015 int valid = valid_lisp_object_p (arg);
1017 if (valid > 0)
1018 debug_print (arg);
1019 else
1020 fprintf (stderr, "#<%s_LISP_OBJECT 0x%08lx>\r\n",
1021 !valid ? "INVALID" : "SOME",
1022 #ifdef NO_UNION_TYPE
1023 (unsigned long) arg
1024 #else
1025 (unsigned long) arg.i
1026 #endif
1031 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
1032 1, 1, 0,
1033 doc: /* Convert an error value (ERROR-SYMBOL . DATA) to an error message.
1034 See Info anchor `(elisp)Definition of signal' for some details on how this
1035 error message is constructed. */)
1036 (obj)
1037 Lisp_Object obj;
1039 struct buffer *old = current_buffer;
1040 Lisp_Object value;
1041 struct gcpro gcpro1;
1043 /* If OBJ is (error STRING), just return STRING.
1044 That is not only faster, it also avoids the need to allocate
1045 space here when the error is due to memory full. */
1046 if (CONSP (obj) && EQ (XCAR (obj), Qerror)
1047 && CONSP (XCDR (obj))
1048 && STRINGP (XCAR (XCDR (obj)))
1049 && NILP (XCDR (XCDR (obj))))
1050 return XCAR (XCDR (obj));
1052 print_error_message (obj, Vprin1_to_string_buffer, 0, Qnil);
1054 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
1055 value = Fbuffer_string ();
1057 GCPRO1 (value);
1058 Ferase_buffer ();
1059 set_buffer_internal (old);
1060 UNGCPRO;
1062 return value;
1065 /* Print an error message for the error DATA onto Lisp output stream
1066 STREAM (suitable for the print functions).
1067 CONTEXT is a C string describing the context of the error.
1068 CALLER is the Lisp function inside which the error was signaled. */
1070 void
1071 print_error_message (data, stream, context, caller)
1072 Lisp_Object data, stream;
1073 char *context;
1074 Lisp_Object caller;
1076 Lisp_Object errname, errmsg, file_error, tail;
1077 struct gcpro gcpro1;
1078 int i;
1080 if (context != 0)
1081 write_string_1 (context, -1, stream);
1083 /* If we know from where the error was signaled, show it in
1084 *Messages*. */
1085 if (!NILP (caller) && SYMBOLP (caller))
1087 Lisp_Object cname = SYMBOL_NAME (caller);
1088 char *name = alloca (SBYTES (cname));
1089 bcopy (SDATA (cname), name, SBYTES (cname));
1090 message_dolog (name, SBYTES (cname), 0, 0);
1091 message_dolog (": ", 2, 0, 0);
1094 errname = Fcar (data);
1096 if (EQ (errname, Qerror))
1098 data = Fcdr (data);
1099 if (!CONSP (data))
1100 data = Qnil;
1101 errmsg = Fcar (data);
1102 file_error = Qnil;
1104 else
1106 Lisp_Object error_conditions;
1107 errmsg = Fget (errname, Qerror_message);
1108 error_conditions = Fget (errname, Qerror_conditions);
1109 file_error = Fmemq (Qfile_error, error_conditions);
1112 /* Print an error message including the data items. */
1114 tail = Fcdr_safe (data);
1115 GCPRO1 (tail);
1117 /* For file-error, make error message by concatenating
1118 all the data items. They are all strings. */
1119 if (!NILP (file_error) && CONSP (tail))
1120 errmsg = XCAR (tail), tail = XCDR (tail);
1122 if (STRINGP (errmsg))
1123 Fprinc (errmsg, stream);
1124 else
1125 write_string_1 ("peculiar error", -1, stream);
1127 for (i = 0; CONSP (tail); tail = XCDR (tail), i++)
1129 Lisp_Object obj;
1131 write_string_1 (i ? ", " : ": ", 2, stream);
1132 obj = XCAR (tail);
1133 if (!NILP (file_error) || EQ (errname, Qend_of_file))
1134 Fprinc (obj, stream);
1135 else
1136 Fprin1 (obj, stream);
1139 UNGCPRO;
1145 * The buffer should be at least as large as the max string size of the
1146 * largest float, printed in the biggest notation. This is undoubtedly
1147 * 20d float_output_format, with the negative of the C-constant "HUGE"
1148 * from <math.h>.
1150 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
1152 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
1153 * case of -1e307 in 20d float_output_format. What is one to do (short of
1154 * re-writing _doprnt to be more sane)?
1155 * -wsr
1158 void
1159 float_to_string (buf, data)
1160 unsigned char *buf;
1161 double data;
1163 unsigned char *cp;
1164 int width;
1166 /* Check for plus infinity in a way that won't lose
1167 if there is no plus infinity. */
1168 if (data == data / 2 && data > 1.0)
1170 strcpy (buf, "1.0e+INF");
1171 return;
1173 /* Likewise for minus infinity. */
1174 if (data == data / 2 && data < -1.0)
1176 strcpy (buf, "-1.0e+INF");
1177 return;
1179 /* Check for NaN in a way that won't fail if there are no NaNs. */
1180 if (! (data * 0.0 >= 0.0))
1182 /* Prepend "-" if the NaN's sign bit is negative.
1183 The sign bit of a double is the bit that is 1 in -0.0. */
1184 int i;
1185 union { double d; char c[sizeof (double)]; } u_data, u_minus_zero;
1186 u_data.d = data;
1187 u_minus_zero.d = - 0.0;
1188 for (i = 0; i < sizeof (double); i++)
1189 if (u_data.c[i] & u_minus_zero.c[i])
1191 *buf++ = '-';
1192 break;
1195 strcpy (buf, "0.0e+NaN");
1196 return;
1199 if (NILP (Vfloat_output_format)
1200 || !STRINGP (Vfloat_output_format))
1201 lose:
1203 /* Generate the fewest number of digits that represent the
1204 floating point value without losing information.
1205 The following method is simple but a bit slow.
1206 For ideas about speeding things up, please see:
1208 Guy L Steele Jr & Jon L White, How to print floating-point numbers
1209 accurately. SIGPLAN notices 25, 6 (June 1990), 112-126.
1211 Robert G Burger & R Kent Dybvig, Printing floating point numbers
1212 quickly and accurately, SIGPLAN notices 31, 5 (May 1996), 108-116. */
1214 width = fabs (data) < DBL_MIN ? 1 : DBL_DIG;
1216 sprintf (buf, "%.*g", width, data);
1217 while (width++ < DOUBLE_DIGITS_BOUND && atof (buf) != data);
1219 else /* oink oink */
1221 /* Check that the spec we have is fully valid.
1222 This means not only valid for printf,
1223 but meant for floats, and reasonable. */
1224 cp = SDATA (Vfloat_output_format);
1226 if (cp[0] != '%')
1227 goto lose;
1228 if (cp[1] != '.')
1229 goto lose;
1231 cp += 2;
1233 /* Check the width specification. */
1234 width = -1;
1235 if ('0' <= *cp && *cp <= '9')
1237 width = 0;
1239 width = (width * 10) + (*cp++ - '0');
1240 while (*cp >= '0' && *cp <= '9');
1242 /* A precision of zero is valid only for %f. */
1243 if (width > DBL_DIG
1244 || (width == 0 && *cp != 'f'))
1245 goto lose;
1248 if (*cp != 'e' && *cp != 'f' && *cp != 'g')
1249 goto lose;
1251 if (cp[1] != 0)
1252 goto lose;
1254 sprintf (buf, SDATA (Vfloat_output_format), data);
1257 /* Make sure there is a decimal point with digit after, or an
1258 exponent, so that the value is readable as a float. But don't do
1259 this with "%.0f"; it's valid for that not to produce a decimal
1260 point. Note that width can be 0 only for %.0f. */
1261 if (width != 0)
1263 for (cp = buf; *cp; cp++)
1264 if ((*cp < '0' || *cp > '9') && *cp != '-')
1265 break;
1267 if (*cp == '.' && cp[1] == 0)
1269 cp[1] = '0';
1270 cp[2] = 0;
1273 if (*cp == 0)
1275 *cp++ = '.';
1276 *cp++ = '0';
1277 *cp++ = 0;
1283 static void
1284 print (obj, printcharfun, escapeflag)
1285 Lisp_Object obj;
1286 register Lisp_Object printcharfun;
1287 int escapeflag;
1289 old_backquote_output = 0;
1291 /* Reset print_number_index and Vprint_number_table only when
1292 the variable Vprint_continuous_numbering is nil. Otherwise,
1293 the values of these variables will be kept between several
1294 print functions. */
1295 if (NILP (Vprint_continuous_numbering)
1296 || NILP (Vprint_number_table))
1298 print_number_index = 0;
1299 Vprint_number_table = Qnil;
1302 /* Construct Vprint_number_table for print-gensym and print-circle. */
1303 if (!NILP (Vprint_gensym) || !NILP (Vprint_circle))
1305 int i, start, index;
1306 start = index = print_number_index;
1307 /* Construct Vprint_number_table.
1308 This increments print_number_index for the objects added. */
1309 print_depth = 0;
1310 print_preprocess (obj);
1312 /* Remove unnecessary objects, which appear only once in OBJ;
1313 that is, whose status is Qnil. Compactify the necessary objects. */
1314 for (i = start; i < print_number_index; i++)
1315 if (!NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1317 PRINT_NUMBER_OBJECT (Vprint_number_table, index)
1318 = PRINT_NUMBER_OBJECT (Vprint_number_table, i);
1319 index++;
1322 /* Clear out objects outside the active part of the table. */
1323 for (i = index; i < print_number_index; i++)
1324 PRINT_NUMBER_OBJECT (Vprint_number_table, i) = Qnil;
1326 /* Reset the status field for the next print step. Now this
1327 field means whether the object has already been printed. */
1328 for (i = start; i < print_number_index; i++)
1329 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qnil;
1331 print_number_index = index;
1334 print_depth = 0;
1335 print_object (obj, printcharfun, escapeflag);
1338 /* Construct Vprint_number_table according to the structure of OBJ.
1339 OBJ itself and all its elements will be added to Vprint_number_table
1340 recursively if it is a list, vector, compiled function, char-table,
1341 string (its text properties will be traced), or a symbol that has
1342 no obarray (this is for the print-gensym feature).
1343 The status fields of Vprint_number_table mean whether each object appears
1344 more than once in OBJ: Qnil at the first time, and Qt after that . */
1345 static void
1346 print_preprocess (obj)
1347 Lisp_Object obj;
1349 int i;
1350 EMACS_INT size;
1351 int loop_count = 0;
1352 Lisp_Object halftail;
1354 /* Give up if we go so deep that print_object will get an error. */
1355 /* See similar code in print_object. */
1356 if (print_depth >= PRINT_CIRCLE)
1357 error ("Apparently circular structure being printed");
1359 /* Avoid infinite recursion for circular nested structure
1360 in the case where Vprint_circle is nil. */
1361 if (NILP (Vprint_circle))
1363 for (i = 0; i < print_depth; i++)
1364 if (EQ (obj, being_printed[i]))
1365 return;
1366 being_printed[print_depth] = obj;
1369 print_depth++;
1370 halftail = obj;
1372 loop:
1373 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
1374 || COMPILEDP (obj) || CHAR_TABLE_P (obj)
1375 || (! NILP (Vprint_gensym)
1376 && SYMBOLP (obj)
1377 && !SYMBOL_INTERNED_P (obj)))
1379 /* In case print-circle is nil and print-gensym is t,
1380 add OBJ to Vprint_number_table only when OBJ is a symbol. */
1381 if (! NILP (Vprint_circle) || SYMBOLP (obj))
1383 for (i = 0; i < print_number_index; i++)
1384 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i), obj))
1386 /* OBJ appears more than once. Let's remember that. */
1387 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1388 print_depth--;
1389 return;
1392 /* OBJ is not yet recorded. Let's add to the table. */
1393 if (print_number_index == 0)
1395 /* Initialize the table. */
1396 Vprint_number_table = Fmake_vector (make_number (40), Qnil);
1398 else if (XVECTOR (Vprint_number_table)->size == print_number_index * 2)
1400 /* Reallocate the table. */
1401 int i = print_number_index * 4;
1402 Lisp_Object old_table = Vprint_number_table;
1403 Vprint_number_table = Fmake_vector (make_number (i), Qnil);
1404 for (i = 0; i < print_number_index; i++)
1406 PRINT_NUMBER_OBJECT (Vprint_number_table, i)
1407 = PRINT_NUMBER_OBJECT (old_table, i);
1408 PRINT_NUMBER_STATUS (Vprint_number_table, i)
1409 = PRINT_NUMBER_STATUS (old_table, i);
1412 PRINT_NUMBER_OBJECT (Vprint_number_table, print_number_index) = obj;
1413 /* If Vprint_continuous_numbering is non-nil and OBJ is a gensym,
1414 always print the gensym with a number. This is a special for
1415 the lisp function byte-compile-output-docform. */
1416 if (!NILP (Vprint_continuous_numbering)
1417 && SYMBOLP (obj)
1418 && !SYMBOL_INTERNED_P (obj))
1419 PRINT_NUMBER_STATUS (Vprint_number_table, print_number_index) = Qt;
1420 print_number_index++;
1423 switch (XGCTYPE (obj))
1425 case Lisp_String:
1426 /* A string may have text properties, which can be circular. */
1427 traverse_intervals_noorder (STRING_INTERVALS (obj),
1428 print_preprocess_string, Qnil);
1429 break;
1431 case Lisp_Cons:
1432 /* Use HALFTAIL and LOOP_COUNT to detect circular lists,
1433 just as in print_object. */
1434 if (loop_count && EQ (obj, halftail))
1435 break;
1436 print_preprocess (XCAR (obj));
1437 obj = XCDR (obj);
1438 loop_count++;
1439 if (!(loop_count & 1))
1440 halftail = XCDR (halftail);
1441 goto loop;
1443 case Lisp_Vectorlike:
1444 size = XVECTOR (obj)->size;
1445 if (size & PSEUDOVECTOR_FLAG)
1446 size &= PSEUDOVECTOR_SIZE_MASK;
1447 for (i = 0; i < size; i++)
1448 print_preprocess (XVECTOR (obj)->contents[i]);
1449 break;
1451 default:
1452 break;
1455 print_depth--;
1458 static void
1459 print_preprocess_string (interval, arg)
1460 INTERVAL interval;
1461 Lisp_Object arg;
1463 print_preprocess (interval->plist);
1466 static void
1467 print_object (obj, printcharfun, escapeflag)
1468 Lisp_Object obj;
1469 register Lisp_Object printcharfun;
1470 int escapeflag;
1472 char buf[40];
1474 QUIT;
1476 /* Detect circularities and truncate them. */
1477 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
1478 || COMPILEDP (obj) || CHAR_TABLE_P (obj)
1479 || (! NILP (Vprint_gensym)
1480 && SYMBOLP (obj)
1481 && !SYMBOL_INTERNED_P (obj)))
1483 if (NILP (Vprint_circle) && NILP (Vprint_gensym))
1485 /* Simple but incomplete way. */
1486 int i;
1487 for (i = 0; i < print_depth; i++)
1488 if (EQ (obj, being_printed[i]))
1490 sprintf (buf, "#%d", i);
1491 strout (buf, -1, -1, printcharfun, 0);
1492 return;
1494 being_printed[print_depth] = obj;
1496 else
1498 /* With the print-circle feature. */
1499 int i;
1500 for (i = 0; i < print_number_index; i++)
1501 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i), obj))
1503 if (NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1505 /* Add a prefix #n= if OBJ has not yet been printed;
1506 that is, its status field is nil. */
1507 sprintf (buf, "#%d=", i + 1);
1508 strout (buf, -1, -1, printcharfun, 0);
1509 /* OBJ is going to be printed. Set the status to t. */
1510 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1511 break;
1513 else
1515 /* Just print #n# if OBJ has already been printed. */
1516 sprintf (buf, "#%d#", i + 1);
1517 strout (buf, -1, -1, printcharfun, 0);
1518 return;
1524 print_depth++;
1526 /* See similar code in print_preprocess. */
1527 if (print_depth > PRINT_CIRCLE)
1528 error ("Apparently circular structure being printed");
1529 #ifdef MAX_PRINT_CHARS
1530 if (max_print && print_chars > max_print)
1532 PRINTCHAR ('\n');
1533 print_chars = 0;
1535 #endif /* MAX_PRINT_CHARS */
1537 switch (XGCTYPE (obj))
1539 case Lisp_Int:
1540 if (sizeof (int) == sizeof (EMACS_INT))
1541 sprintf (buf, "%d", XINT (obj));
1542 else if (sizeof (long) == sizeof (EMACS_INT))
1543 sprintf (buf, "%ld", (long) XINT (obj));
1544 else
1545 abort ();
1546 strout (buf, -1, -1, printcharfun, 0);
1547 break;
1549 case Lisp_Float:
1551 char pigbuf[350]; /* see comments in float_to_string */
1553 float_to_string (pigbuf, XFLOAT_DATA (obj));
1554 strout (pigbuf, -1, -1, printcharfun, 0);
1556 break;
1558 case Lisp_String:
1559 if (!escapeflag)
1560 print_string (obj, printcharfun);
1561 else
1563 register int i, i_byte;
1564 struct gcpro gcpro1;
1565 unsigned char *str;
1566 int size_byte;
1567 /* 1 means we must ensure that the next character we output
1568 cannot be taken as part of a hex character escape. */
1569 int need_nonhex = 0;
1570 int multibyte = STRING_MULTIBYTE (obj);
1572 GCPRO1 (obj);
1574 if (!NULL_INTERVAL_P (STRING_INTERVALS (obj)))
1576 PRINTCHAR ('#');
1577 PRINTCHAR ('(');
1580 PRINTCHAR ('\"');
1581 str = SDATA (obj);
1582 size_byte = SBYTES (obj);
1584 for (i = 0, i_byte = 0; i_byte < size_byte;)
1586 /* Here, we must convert each multi-byte form to the
1587 corresponding character code before handing it to PRINTCHAR. */
1588 int len;
1589 int c;
1591 if (multibyte)
1593 c = STRING_CHAR_AND_LENGTH (str + i_byte,
1594 size_byte - i_byte, len);
1595 if (CHAR_VALID_P (c, 0))
1596 i_byte += len;
1597 else
1598 c = str[i_byte++];
1600 else
1601 c = str[i_byte++];
1603 QUIT;
1605 if (c == '\n' && print_escape_newlines)
1607 PRINTCHAR ('\\');
1608 PRINTCHAR ('n');
1610 else if (c == '\f' && print_escape_newlines)
1612 PRINTCHAR ('\\');
1613 PRINTCHAR ('f');
1615 else if (multibyte
1616 && ! ASCII_BYTE_P (c)
1617 && (SINGLE_BYTE_CHAR_P (c) || print_escape_multibyte))
1619 /* When multibyte is disabled,
1620 print multibyte string chars using hex escapes.
1621 For a char code that could be in a unibyte string,
1622 when found in a multibyte string, always use a hex escape
1623 so it reads back as multibyte. */
1624 unsigned char outbuf[50];
1625 sprintf (outbuf, "\\x%x", c);
1626 strout (outbuf, -1, -1, printcharfun, 0);
1627 need_nonhex = 1;
1629 else if (! multibyte
1630 && SINGLE_BYTE_CHAR_P (c) && ! ASCII_BYTE_P (c)
1631 && print_escape_nonascii)
1633 /* When printing in a multibyte buffer
1634 or when explicitly requested,
1635 print single-byte non-ASCII string chars
1636 using octal escapes. */
1637 unsigned char outbuf[5];
1638 sprintf (outbuf, "\\%03o", c);
1639 strout (outbuf, -1, -1, printcharfun, 0);
1641 else
1643 /* If we just had a hex escape, and this character
1644 could be taken as part of it,
1645 output `\ ' to prevent that. */
1646 if (need_nonhex)
1648 need_nonhex = 0;
1649 if ((c >= 'a' && c <= 'f')
1650 || (c >= 'A' && c <= 'F')
1651 || (c >= '0' && c <= '9'))
1652 strout ("\\ ", -1, -1, printcharfun, 0);
1655 if (c == '\"' || c == '\\')
1656 PRINTCHAR ('\\');
1657 PRINTCHAR (c);
1660 PRINTCHAR ('\"');
1662 if (!NULL_INTERVAL_P (STRING_INTERVALS (obj)))
1664 traverse_intervals (STRING_INTERVALS (obj),
1665 0, print_interval, printcharfun);
1666 PRINTCHAR (')');
1669 UNGCPRO;
1671 break;
1673 case Lisp_Symbol:
1675 register int confusing;
1676 register unsigned char *p = SDATA (SYMBOL_NAME (obj));
1677 register unsigned char *end = p + SBYTES (SYMBOL_NAME (obj));
1678 register int c;
1679 int i, i_byte, size_byte;
1680 Lisp_Object name;
1682 name = SYMBOL_NAME (obj);
1684 if (p != end && (*p == '-' || *p == '+')) p++;
1685 if (p == end)
1686 confusing = 0;
1687 /* If symbol name begins with a digit, and ends with a digit,
1688 and contains nothing but digits and `e', it could be treated
1689 as a number. So set CONFUSING.
1691 Symbols that contain periods could also be taken as numbers,
1692 but periods are always escaped, so we don't have to worry
1693 about them here. */
1694 else if (*p >= '0' && *p <= '9'
1695 && end[-1] >= '0' && end[-1] <= '9')
1697 while (p != end && ((*p >= '0' && *p <= '9')
1698 /* Needed for \2e10. */
1699 || *p == 'e'))
1700 p++;
1701 confusing = (end == p);
1703 else
1704 confusing = 0;
1706 if (! NILP (Vprint_gensym) && !SYMBOL_INTERNED_P (obj))
1708 PRINTCHAR ('#');
1709 PRINTCHAR (':');
1712 size_byte = SBYTES (name);
1714 for (i = 0, i_byte = 0; i_byte < size_byte;)
1716 /* Here, we must convert each multi-byte form to the
1717 corresponding character code before handing it to PRINTCHAR. */
1718 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1719 QUIT;
1721 if (escapeflag)
1723 if (c == '\"' || c == '\\' || c == '\''
1724 || c == ';' || c == '#' || c == '(' || c == ')'
1725 || c == ',' || c =='.' || c == '`'
1726 || c == '[' || c == ']' || c == '?' || c <= 040
1727 || confusing)
1728 PRINTCHAR ('\\'), confusing = 0;
1730 PRINTCHAR (c);
1733 break;
1735 case Lisp_Cons:
1736 /* If deeper than spec'd depth, print placeholder. */
1737 if (INTEGERP (Vprint_level)
1738 && print_depth > XINT (Vprint_level))
1739 strout ("...", -1, -1, printcharfun, 0);
1740 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1741 && (EQ (XCAR (obj), Qquote)))
1743 PRINTCHAR ('\'');
1744 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1746 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1747 && (EQ (XCAR (obj), Qfunction)))
1749 PRINTCHAR ('#');
1750 PRINTCHAR ('\'');
1751 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1753 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1754 && ! old_backquote_output
1755 && ((EQ (XCAR (obj), Qbackquote)
1756 || EQ (XCAR (obj), Qcomma)
1757 || EQ (XCAR (obj), Qcomma_at)
1758 || EQ (XCAR (obj), Qcomma_dot))))
1760 print_object (XCAR (obj), printcharfun, 0);
1761 print_object (XCAR (XCDR (obj)), printcharfun, escapeflag);
1763 else
1765 PRINTCHAR ('(');
1767 /* If the first element is a backquote form,
1768 print it old-style so it won't be misunderstood. */
1769 if (print_quoted && CONSP (XCAR (obj))
1770 && CONSP (XCDR (XCAR (obj)))
1771 && NILP (XCDR (XCDR (XCAR (obj))))
1772 && EQ (XCAR (XCAR (obj)), Qbackquote))
1774 Lisp_Object tem;
1775 tem = XCAR (obj);
1776 PRINTCHAR ('(');
1778 print_object (Qbackquote, printcharfun, 0);
1779 PRINTCHAR (' ');
1781 ++old_backquote_output;
1782 print_object (XCAR (XCDR (tem)), printcharfun, 0);
1783 --old_backquote_output;
1784 PRINTCHAR (')');
1786 obj = XCDR (obj);
1790 int print_length, i;
1791 Lisp_Object halftail = obj;
1793 /* Negative values of print-length are invalid in CL.
1794 Treat them like nil, as CMUCL does. */
1795 if (NATNUMP (Vprint_length))
1796 print_length = XFASTINT (Vprint_length);
1797 else
1798 print_length = 0;
1800 i = 0;
1801 while (CONSP (obj))
1803 /* Detect circular list. */
1804 if (NILP (Vprint_circle))
1806 /* Simple but imcomplete way. */
1807 if (i != 0 && EQ (obj, halftail))
1809 sprintf (buf, " . #%d", i / 2);
1810 strout (buf, -1, -1, printcharfun, 0);
1811 goto end_of_list;
1814 else
1816 /* With the print-circle feature. */
1817 if (i != 0)
1819 int i;
1820 for (i = 0; i < print_number_index; i++)
1821 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i),
1822 obj))
1824 if (NILP (PRINT_NUMBER_STATUS (Vprint_number_table, i)))
1826 strout (" . ", 3, 3, printcharfun, 0);
1827 print_object (obj, printcharfun, escapeflag);
1829 else
1831 sprintf (buf, " . #%d#", i + 1);
1832 strout (buf, -1, -1, printcharfun, 0);
1834 goto end_of_list;
1839 if (i++)
1840 PRINTCHAR (' ');
1842 if (print_length && i > print_length)
1844 strout ("...", 3, 3, printcharfun, 0);
1845 goto end_of_list;
1848 print_object (XCAR (obj), printcharfun, escapeflag);
1850 obj = XCDR (obj);
1851 if (!(i & 1))
1852 halftail = XCDR (halftail);
1856 /* OBJ non-nil here means it's the end of a dotted list. */
1857 if (!NILP (obj))
1859 strout (" . ", 3, 3, printcharfun, 0);
1860 print_object (obj, printcharfun, escapeflag);
1863 end_of_list:
1864 PRINTCHAR (')');
1866 break;
1868 case Lisp_Vectorlike:
1869 if (PROCESSP (obj))
1871 if (escapeflag)
1873 strout ("#<process ", -1, -1, printcharfun, 0);
1874 print_string (XPROCESS (obj)->name, printcharfun);
1875 PRINTCHAR ('>');
1877 else
1878 print_string (XPROCESS (obj)->name, printcharfun);
1880 else if (BOOL_VECTOR_P (obj))
1882 register int i;
1883 register unsigned char c;
1884 struct gcpro gcpro1;
1885 int size_in_chars
1886 = ((XBOOL_VECTOR (obj)->size + BOOL_VECTOR_BITS_PER_CHAR - 1)
1887 / BOOL_VECTOR_BITS_PER_CHAR);
1889 GCPRO1 (obj);
1891 PRINTCHAR ('#');
1892 PRINTCHAR ('&');
1893 sprintf (buf, "%ld", (long) XBOOL_VECTOR (obj)->size);
1894 strout (buf, -1, -1, printcharfun, 0);
1895 PRINTCHAR ('\"');
1897 /* Don't print more characters than the specified maximum.
1898 Negative values of print-length are invalid. Treat them
1899 like a print-length of nil. */
1900 if (NATNUMP (Vprint_length)
1901 && XFASTINT (Vprint_length) < size_in_chars)
1902 size_in_chars = XFASTINT (Vprint_length);
1904 for (i = 0; i < size_in_chars; i++)
1906 QUIT;
1907 c = XBOOL_VECTOR (obj)->data[i];
1908 if (c == '\n' && print_escape_newlines)
1910 PRINTCHAR ('\\');
1911 PRINTCHAR ('n');
1913 else if (c == '\f' && print_escape_newlines)
1915 PRINTCHAR ('\\');
1916 PRINTCHAR ('f');
1918 else if (c > '\177')
1920 /* Use octal escapes to avoid encoding issues. */
1921 PRINTCHAR ('\\');
1922 PRINTCHAR ('0' + ((c >> 6) & 3));
1923 PRINTCHAR ('0' + ((c >> 3) & 7));
1924 PRINTCHAR ('0' + (c & 7));
1926 else
1928 if (c == '\"' || c == '\\')
1929 PRINTCHAR ('\\');
1930 PRINTCHAR (c);
1933 PRINTCHAR ('\"');
1935 UNGCPRO;
1937 else if (SUBRP (obj))
1939 strout ("#<subr ", -1, -1, printcharfun, 0);
1940 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun, 0);
1941 PRINTCHAR ('>');
1943 else if (WINDOWP (obj))
1945 strout ("#<window ", -1, -1, printcharfun, 0);
1946 sprintf (buf, "%ld", (long) XFASTINT (XWINDOW (obj)->sequence_number));
1947 strout (buf, -1, -1, printcharfun, 0);
1948 if (!NILP (XWINDOW (obj)->buffer))
1950 strout (" on ", -1, -1, printcharfun, 0);
1951 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
1953 PRINTCHAR ('>');
1955 else if (HASH_TABLE_P (obj))
1957 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
1958 strout ("#<hash-table", -1, -1, printcharfun, 0);
1959 if (SYMBOLP (h->test))
1961 PRINTCHAR (' ');
1962 PRINTCHAR ('\'');
1963 strout (SDATA (SYMBOL_NAME (h->test)), -1, -1, printcharfun, 0);
1964 PRINTCHAR (' ');
1965 strout (SDATA (SYMBOL_NAME (h->weak)), -1, -1, printcharfun, 0);
1966 PRINTCHAR (' ');
1967 sprintf (buf, "%ld/%ld", (long) XFASTINT (h->count),
1968 (long) XVECTOR (h->next)->size);
1969 strout (buf, -1, -1, printcharfun, 0);
1971 sprintf (buf, " 0x%lx", (unsigned long) h);
1972 strout (buf, -1, -1, printcharfun, 0);
1973 PRINTCHAR ('>');
1975 else if (BUFFERP (obj))
1977 if (NILP (XBUFFER (obj)->name))
1978 strout ("#<killed buffer>", -1, -1, printcharfun, 0);
1979 else if (escapeflag)
1981 strout ("#<buffer ", -1, -1, printcharfun, 0);
1982 print_string (XBUFFER (obj)->name, printcharfun);
1983 PRINTCHAR ('>');
1985 else
1986 print_string (XBUFFER (obj)->name, printcharfun);
1988 else if (WINDOW_CONFIGURATIONP (obj))
1990 strout ("#<window-configuration>", -1, -1, printcharfun, 0);
1992 else if (FRAMEP (obj))
1994 strout ((FRAME_LIVE_P (XFRAME (obj))
1995 ? "#<frame " : "#<dead frame "),
1996 -1, -1, printcharfun, 0);
1997 print_string (XFRAME (obj)->name, printcharfun);
1998 sprintf (buf, " 0x%lx", (unsigned long) (XFRAME (obj)));
1999 strout (buf, -1, -1, printcharfun, 0);
2000 PRINTCHAR ('>');
2002 else
2004 EMACS_INT size = XVECTOR (obj)->size;
2005 if (COMPILEDP (obj))
2007 PRINTCHAR ('#');
2008 size &= PSEUDOVECTOR_SIZE_MASK;
2010 if (CHAR_TABLE_P (obj))
2012 /* We print a char-table as if it were a vector,
2013 lumping the parent and default slots in with the
2014 character slots. But we add #^ as a prefix. */
2015 PRINTCHAR ('#');
2016 PRINTCHAR ('^');
2017 if (SUB_CHAR_TABLE_P (obj))
2018 PRINTCHAR ('^');
2019 size &= PSEUDOVECTOR_SIZE_MASK;
2021 if (size & PSEUDOVECTOR_FLAG)
2022 goto badtype;
2024 PRINTCHAR ('[');
2026 register int i;
2027 register Lisp_Object tem;
2028 int real_size = size;
2030 /* Don't print more elements than the specified maximum. */
2031 if (NATNUMP (Vprint_length)
2032 && XFASTINT (Vprint_length) < size)
2033 size = XFASTINT (Vprint_length);
2035 for (i = 0; i < size; i++)
2037 if (i) PRINTCHAR (' ');
2038 tem = XVECTOR (obj)->contents[i];
2039 print_object (tem, printcharfun, escapeflag);
2041 if (size < real_size)
2042 strout (" ...", 4, 4, printcharfun, 0);
2044 PRINTCHAR (']');
2046 break;
2048 case Lisp_Misc:
2049 switch (XMISCTYPE (obj))
2051 case Lisp_Misc_Marker:
2052 strout ("#<marker ", -1, -1, printcharfun, 0);
2053 /* Do you think this is necessary? */
2054 if (XMARKER (obj)->insertion_type != 0)
2055 strout ("(moves after insertion) ", -1, -1, printcharfun, 0);
2056 if (! XMARKER (obj)->buffer)
2057 strout ("in no buffer", -1, -1, printcharfun, 0);
2058 else
2060 sprintf (buf, "at %d", marker_position (obj));
2061 strout (buf, -1, -1, printcharfun, 0);
2062 strout (" in ", -1, -1, printcharfun, 0);
2063 print_string (XMARKER (obj)->buffer->name, printcharfun);
2065 PRINTCHAR ('>');
2066 break;
2068 case Lisp_Misc_Overlay:
2069 strout ("#<overlay ", -1, -1, printcharfun, 0);
2070 if (! XMARKER (OVERLAY_START (obj))->buffer)
2071 strout ("in no buffer", -1, -1, printcharfun, 0);
2072 else
2074 sprintf (buf, "from %d to %d in ",
2075 marker_position (OVERLAY_START (obj)),
2076 marker_position (OVERLAY_END (obj)));
2077 strout (buf, -1, -1, printcharfun, 0);
2078 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
2079 printcharfun);
2081 PRINTCHAR ('>');
2082 break;
2084 /* Remaining cases shouldn't happen in normal usage, but let's print
2085 them anyway for the benefit of the debugger. */
2086 case Lisp_Misc_Free:
2087 strout ("#<misc free cell>", -1, -1, printcharfun, 0);
2088 break;
2090 case Lisp_Misc_Intfwd:
2091 sprintf (buf, "#<intfwd to %ld>", (long) *XINTFWD (obj)->intvar);
2092 strout (buf, -1, -1, printcharfun, 0);
2093 break;
2095 case Lisp_Misc_Boolfwd:
2096 sprintf (buf, "#<boolfwd to %s>",
2097 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
2098 strout (buf, -1, -1, printcharfun, 0);
2099 break;
2101 case Lisp_Misc_Objfwd:
2102 strout ("#<objfwd to ", -1, -1, printcharfun, 0);
2103 print_object (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
2104 PRINTCHAR ('>');
2105 break;
2107 case Lisp_Misc_Buffer_Objfwd:
2108 strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
2109 print_object (PER_BUFFER_VALUE (current_buffer,
2110 XBUFFER_OBJFWD (obj)->offset),
2111 printcharfun, escapeflag);
2112 PRINTCHAR ('>');
2113 break;
2115 case Lisp_Misc_Kboard_Objfwd:
2116 strout ("#<kboard_objfwd to ", -1, -1, printcharfun, 0);
2117 print_object (*(Lisp_Object *) ((char *) current_kboard
2118 + XKBOARD_OBJFWD (obj)->offset),
2119 printcharfun, escapeflag);
2120 PRINTCHAR ('>');
2121 break;
2123 case Lisp_Misc_Buffer_Local_Value:
2124 strout ("#<buffer_local_value ", -1, -1, printcharfun, 0);
2125 goto do_buffer_local;
2126 case Lisp_Misc_Some_Buffer_Local_Value:
2127 strout ("#<some_buffer_local_value ", -1, -1, printcharfun, 0);
2128 do_buffer_local:
2129 strout ("[realvalue] ", -1, -1, printcharfun, 0);
2130 print_object (XBUFFER_LOCAL_VALUE (obj)->realvalue,
2131 printcharfun, escapeflag);
2132 if (XBUFFER_LOCAL_VALUE (obj)->found_for_buffer)
2133 strout ("[local in buffer] ", -1, -1, printcharfun, 0);
2134 else
2135 strout ("[buffer] ", -1, -1, printcharfun, 0);
2136 print_object (XBUFFER_LOCAL_VALUE (obj)->buffer,
2137 printcharfun, escapeflag);
2138 if (XBUFFER_LOCAL_VALUE (obj)->check_frame)
2140 if (XBUFFER_LOCAL_VALUE (obj)->found_for_frame)
2141 strout ("[local in frame] ", -1, -1, printcharfun, 0);
2142 else
2143 strout ("[frame] ", -1, -1, printcharfun, 0);
2144 print_object (XBUFFER_LOCAL_VALUE (obj)->frame,
2145 printcharfun, escapeflag);
2147 strout ("[alist-elt] ", -1, -1, printcharfun, 0);
2148 print_object (XCAR (XBUFFER_LOCAL_VALUE (obj)->cdr),
2149 printcharfun, escapeflag);
2150 strout ("[default-value] ", -1, -1, printcharfun, 0);
2151 print_object (XCDR (XBUFFER_LOCAL_VALUE (obj)->cdr),
2152 printcharfun, escapeflag);
2153 PRINTCHAR ('>');
2154 break;
2156 case Lisp_Misc_Save_Value:
2157 strout ("#<save_value ", -1, -1, printcharfun, 0);
2158 sprintf(buf, "ptr=0x%08lx int=%d",
2159 (unsigned long) XSAVE_VALUE (obj)->pointer,
2160 XSAVE_VALUE (obj)->integer);
2161 strout (buf, -1, -1, printcharfun, 0);
2162 PRINTCHAR ('>');
2163 break;
2165 default:
2166 goto badtype;
2168 break;
2170 default:
2171 badtype:
2173 /* We're in trouble if this happens!
2174 Probably should just abort () */
2175 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun, 0);
2176 if (MISCP (obj))
2177 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
2178 else if (VECTORLIKEP (obj))
2179 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
2180 else
2181 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
2182 strout (buf, -1, -1, printcharfun, 0);
2183 strout (" Save your buffers immediately and please report this bug>",
2184 -1, -1, printcharfun, 0);
2188 print_depth--;
2192 /* Print a description of INTERVAL using PRINTCHARFUN.
2193 This is part of printing a string that has text properties. */
2195 void
2196 print_interval (interval, printcharfun)
2197 INTERVAL interval;
2198 Lisp_Object printcharfun;
2200 PRINTCHAR (' ');
2201 print_object (make_number (interval->position), printcharfun, 1);
2202 PRINTCHAR (' ');
2203 print_object (make_number (interval->position + LENGTH (interval)),
2204 printcharfun, 1);
2205 PRINTCHAR (' ');
2206 print_object (interval->plist, printcharfun, 1);
2210 void
2211 syms_of_print ()
2213 Qtemp_buffer_setup_hook = intern ("temp-buffer-setup-hook");
2214 staticpro (&Qtemp_buffer_setup_hook);
2216 DEFVAR_LISP ("standard-output", &Vstandard_output,
2217 doc: /* Output stream `print' uses by default for outputting a character.
2218 This may be any function of one argument.
2219 It may also be a buffer (output is inserted before point)
2220 or a marker (output is inserted and the marker is advanced)
2221 or the symbol t (output appears in the echo area). */);
2222 Vstandard_output = Qt;
2223 Qstandard_output = intern ("standard-output");
2224 staticpro (&Qstandard_output);
2226 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
2227 doc: /* The format descriptor string used to print floats.
2228 This is a %-spec like those accepted by `printf' in C,
2229 but with some restrictions. It must start with the two characters `%.'.
2230 After that comes an integer precision specification,
2231 and then a letter which controls the format.
2232 The letters allowed are `e', `f' and `g'.
2233 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"
2234 Use `f' for decimal point notation \"DIGITS.DIGITS\".
2235 Use `g' to choose the shorter of those two formats for the number at hand.
2236 The precision in any of these cases is the number of digits following
2237 the decimal point. With `f', a precision of 0 means to omit the
2238 decimal point. 0 is not allowed with `e' or `g'.
2240 A value of nil means to use the shortest notation
2241 that represents the number without losing information. */);
2242 Vfloat_output_format = Qnil;
2243 Qfloat_output_format = intern ("float-output-format");
2244 staticpro (&Qfloat_output_format);
2246 DEFVAR_LISP ("print-length", &Vprint_length,
2247 doc: /* Maximum length of list to print before abbreviating.
2248 A value of nil means no limit. See also `eval-expression-print-length'. */);
2249 Vprint_length = Qnil;
2251 DEFVAR_LISP ("print-level", &Vprint_level,
2252 doc: /* Maximum depth of list nesting to print before abbreviating.
2253 A value of nil means no limit. See also `eval-expression-print-level'. */);
2254 Vprint_level = Qnil;
2256 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
2257 doc: /* Non-nil means print newlines in strings as `\\n'.
2258 Also print formfeeds as `\\f'. */);
2259 print_escape_newlines = 0;
2261 DEFVAR_BOOL ("print-escape-nonascii", &print_escape_nonascii,
2262 doc: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO.
2263 \(OOO is the octal representation of the character code.)
2264 Only single-byte characters are affected, and only in `prin1'.
2265 When the output goes in a multibyte buffer, this feature is
2266 enabled regardless of the value of the variable. */);
2267 print_escape_nonascii = 0;
2269 DEFVAR_BOOL ("print-escape-multibyte", &print_escape_multibyte,
2270 doc: /* Non-nil means print multibyte characters in strings as \\xXXXX.
2271 \(XXXX is the hex representation of the character code.)
2272 This affects only `prin1'. */);
2273 print_escape_multibyte = 0;
2275 DEFVAR_BOOL ("print-quoted", &print_quoted,
2276 doc: /* Non-nil means print quoted forms with reader syntax.
2277 I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and backquoted
2278 forms print as in the new syntax. */);
2279 print_quoted = 0;
2281 DEFVAR_LISP ("print-gensym", &Vprint_gensym,
2282 doc: /* Non-nil means print uninterned symbols so they will read as uninterned.
2283 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.
2284 When the uninterned symbol appears within a recursive data structure,
2285 and the symbol appears more than once, in addition use the #N# and #N=
2286 constructs as needed, so that multiple references to the same symbol are
2287 shared once again when the text is read back. */);
2288 Vprint_gensym = Qnil;
2290 DEFVAR_LISP ("print-circle", &Vprint_circle,
2291 doc: /* *Non-nil means print recursive structures using #N= and #N# syntax.
2292 If nil, printing proceeds recursively and may lead to
2293 `max-lisp-eval-depth' being exceeded or an error may occur:
2294 \"Apparently circular structure being printed.\" Also see
2295 `print-length' and `print-level'.
2296 If non-nil, shared substructures anywhere in the structure are printed
2297 with `#N=' before the first occurrence (in the order of the print
2298 representation) and `#N#' in place of each subsequent occurrence,
2299 where N is a positive decimal integer. */);
2300 Vprint_circle = Qnil;
2302 DEFVAR_LISP ("print-continuous-numbering", &Vprint_continuous_numbering,
2303 doc: /* *Non-nil means number continuously across print calls.
2304 This affects the numbers printed for #N= labels and #M# references.
2305 See also `print-circle', `print-gensym', and `print-number-table'.
2306 This variable should not be set with `setq'; bind it with a `let' instead. */);
2307 Vprint_continuous_numbering = Qnil;
2309 DEFVAR_LISP ("print-number-table", &Vprint_number_table,
2310 doc: /* A vector used internally to produce `#N=' labels and `#N#' references.
2311 The Lisp printer uses this vector to detect Lisp objects referenced more
2312 than once.
2314 When you bind `print-continuous-numbering' to t, you should probably
2315 also bind `print-number-table' to nil. This ensures that the value of
2316 `print-number-table' can be garbage-collected once the printing is
2317 done. If all elements of `print-number-table' are nil, it means that
2318 the printing done so far has not found any shared structure or objects
2319 that need to be recorded in the table. */);
2320 Vprint_number_table = Qnil;
2322 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
2323 staticpro (&Vprin1_to_string_buffer);
2325 defsubr (&Sprin1);
2326 defsubr (&Sprin1_to_string);
2327 defsubr (&Serror_message_string);
2328 defsubr (&Sprinc);
2329 defsubr (&Sprint);
2330 defsubr (&Sterpri);
2331 defsubr (&Swrite_char);
2332 defsubr (&Sexternal_debugging_output);
2333 #ifdef WITH_REDIRECT_DEBUGGING_OUTPUT
2334 defsubr (&Sredirect_debugging_output);
2335 #endif
2337 Qexternal_debugging_output = intern ("external-debugging-output");
2338 staticpro (&Qexternal_debugging_output);
2340 Qprint_escape_newlines = intern ("print-escape-newlines");
2341 staticpro (&Qprint_escape_newlines);
2343 Qprint_escape_multibyte = intern ("print-escape-multibyte");
2344 staticpro (&Qprint_escape_multibyte);
2346 Qprint_escape_nonascii = intern ("print-escape-nonascii");
2347 staticpro (&Qprint_escape_nonascii);
2349 defsubr (&Swith_output_to_temp_buffer);
2352 /* arch-tag: bc797170-94ae-41de-86e3-75e20f8f7a39
2353 (do not change this comment) */