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