(print_string): Don't ignore garbage bytes following a
[bpt/emacs.git] / src / print.c
1 /* Lisp object printing and output streams.
2 Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 1998
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26
27 #ifndef standalone
28 #include "buffer.h"
29 #include "charset.h"
30 #include "frame.h"
31 #include "window.h"
32 #include "process.h"
33 #include "dispextern.h"
34 #include "termchar.h"
35 #include "keyboard.h"
36 #endif /* not standalone */
37
38 #ifdef USE_TEXT_PROPERTIES
39 #include "intervals.h"
40 #endif
41
42 Lisp_Object Vstandard_output, Qstandard_output;
43
44 /* These are used to print like we read. */
45 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
46
47 #ifdef LISP_FLOAT_TYPE
48 Lisp_Object Vfloat_output_format, Qfloat_output_format;
49
50 /* Work around a problem that happens because math.h on hpux 7
51 defines two static variables--which, in Emacs, are not really static,
52 because `static' is defined as nothing. The problem is that they are
53 defined both here and in lread.c.
54 These macros prevent the name conflict. */
55 #if defined (HPUX) && !defined (HPUX8)
56 #define _MAXLDBL print_maxldbl
57 #define _NMAXLDBL print_nmaxldbl
58 #endif
59
60 #include <math.h>
61
62 #if STDC_HEADERS
63 #include <float.h>
64 #include <stdlib.h>
65 #endif
66
67 /* Default to values appropriate for IEEE floating point. */
68 #ifndef FLT_RADIX
69 #define FLT_RADIX 2
70 #endif
71 #ifndef DBL_MANT_DIG
72 #define DBL_MANT_DIG 53
73 #endif
74 #ifndef DBL_DIG
75 #define DBL_DIG 15
76 #endif
77 #ifndef DBL_MIN
78 #define DBL_MIN 2.2250738585072014e-308
79 #endif
80
81 #ifdef DBL_MIN_REPLACEMENT
82 #undef DBL_MIN
83 #define DBL_MIN DBL_MIN_REPLACEMENT
84 #endif
85
86 /* Define DOUBLE_DIGITS_BOUND, an upper bound on the number of decimal digits
87 needed to express a float without losing information.
88 The general-case formula is valid for the usual case, IEEE floating point,
89 but many compilers can't optimize the formula to an integer constant,
90 so make a special case for it. */
91 #if FLT_RADIX == 2 && DBL_MANT_DIG == 53
92 #define DOUBLE_DIGITS_BOUND 17 /* IEEE floating point */
93 #else
94 #define DOUBLE_DIGITS_BOUND ((int) ceil (log10 (pow (FLT_RADIX, DBL_MANT_DIG))))
95 #endif
96
97 #endif /* LISP_FLOAT_TYPE */
98
99 /* Avoid actual stack overflow in print. */
100 int print_depth;
101
102 /* Detect most circularities to print finite output. */
103 #define PRINT_CIRCLE 200
104 Lisp_Object being_printed[PRINT_CIRCLE];
105
106 /* When printing into a buffer, first we put the text in this
107 block, then insert it all at once. */
108 char *print_buffer;
109
110 /* Size allocated in print_buffer. */
111 int print_buffer_size;
112 /* Chars stored in print_buffer. */
113 int print_buffer_pos;
114 /* Bytes stored in print_buffer. */
115 int print_buffer_pos_byte;
116
117 /* Maximum length of list to print in full; noninteger means
118 effectively infinity */
119
120 Lisp_Object Vprint_length;
121
122 /* Maximum depth of list to print in full; noninteger means
123 effectively infinity. */
124
125 Lisp_Object Vprint_level;
126
127 /* Nonzero means print newlines in strings as \n. */
128
129 int print_escape_newlines;
130
131 Lisp_Object Qprint_escape_newlines;
132
133 /* Nonzero means print (quote foo) forms as 'foo, etc. */
134
135 int print_quoted;
136
137 /* Non-nil means print #: before uninterned symbols.
138 Neither t nor nil means so that and don't clear Vprint_gensym_alist
139 on entry to and exit from print functions. */
140
141 Lisp_Object Vprint_gensym;
142
143 /* Association list of certain objects that are `eq' in the form being
144 printed and which should be `eq' when read back in, using the #n=object
145 and #n# reader forms. Each element has the form (object . n). */
146
147 Lisp_Object Vprint_gensym_alist;
148
149 /* Nonzero means print newline to stdout before next minibuffer message.
150 Defined in xdisp.c */
151
152 extern int noninteractive_need_newline;
153
154 extern int minibuffer_auto_raise;
155
156 #ifdef MAX_PRINT_CHARS
157 static int print_chars;
158 static int max_print;
159 #endif /* MAX_PRINT_CHARS */
160
161 void print_interval ();
162 \f
163 #if 0
164 /* Convert between chars and GLYPHs */
165
166 int
167 glyphlen (glyphs)
168 register GLYPH *glyphs;
169 {
170 register int i = 0;
171
172 while (glyphs[i])
173 i++;
174 return i;
175 }
176
177 void
178 str_to_glyph_cpy (str, glyphs)
179 char *str;
180 GLYPH *glyphs;
181 {
182 register GLYPH *gp = glyphs;
183 register char *cp = str;
184
185 while (*cp)
186 *gp++ = *cp++;
187 }
188
189 void
190 str_to_glyph_ncpy (str, glyphs, n)
191 char *str;
192 GLYPH *glyphs;
193 register int n;
194 {
195 register GLYPH *gp = glyphs;
196 register char *cp = str;
197
198 while (n-- > 0)
199 *gp++ = *cp++;
200 }
201
202 void
203 glyph_to_str_cpy (glyphs, str)
204 GLYPH *glyphs;
205 char *str;
206 {
207 register GLYPH *gp = glyphs;
208 register char *cp = str;
209
210 while (*gp)
211 *str++ = *gp++ & 0377;
212 }
213 #endif
214 \f
215 /* Low level output routines for characters and strings */
216
217 /* Lisp functions to do output using a stream
218 must have the stream in a variable called printcharfun
219 and must start with PRINTPREPARE, end with PRINTFINISH,
220 and use PRINTDECLARE to declare common variables.
221 Use PRINTCHAR to output one character,
222 or call strout to output a block of characters.
223 */
224
225 #define PRINTDECLARE \
226 struct buffer *old = current_buffer; \
227 int old_point = -1, start_point; \
228 int old_point_byte, start_point_byte; \
229 int specpdl_count = specpdl_ptr - specpdl; \
230 int free_print_buffer = 0; \
231 Lisp_Object original
232
233 #define PRINTPREPARE \
234 original = printcharfun; \
235 if (NILP (printcharfun)) printcharfun = Qt; \
236 if (BUFFERP (printcharfun)) \
237 { \
238 if (XBUFFER (printcharfun) != current_buffer) \
239 Fset_buffer (printcharfun); \
240 printcharfun = Qnil; \
241 } \
242 if (MARKERP (printcharfun)) \
243 { \
244 if (!(XMARKER (original)->buffer)) \
245 error ("Marker does not point anywhere"); \
246 if (XMARKER (original)->buffer != current_buffer) \
247 set_buffer_internal (XMARKER (original)->buffer); \
248 old_point = PT; \
249 old_point_byte = PT_BYTE; \
250 SET_PT_BOTH (marker_position (printcharfun), \
251 marker_byte_position (printcharfun)); \
252 start_point = PT; \
253 start_point_byte = PT_BYTE; \
254 printcharfun = Qnil; \
255 } \
256 if (NILP (printcharfun)) \
257 { \
258 Lisp_Object string; \
259 if (print_buffer != 0) \
260 { \
261 string = make_string_from_bytes (print_buffer, \
262 print_buffer_pos, \
263 print_buffer_pos_byte); \
264 record_unwind_protect (print_unwind, string); \
265 } \
266 else \
267 { \
268 print_buffer_size = 1000; \
269 print_buffer = (char *) xmalloc (print_buffer_size); \
270 free_print_buffer = 1; \
271 } \
272 print_buffer_pos = 0; \
273 print_buffer_pos_byte = 0; \
274 } \
275 if (!CONSP (Vprint_gensym)) \
276 Vprint_gensym_alist = Qnil
277
278 #define PRINTFINISH \
279 if (NILP (printcharfun)) \
280 insert_1_both (print_buffer, print_buffer_pos, \
281 print_buffer_pos_byte, 0, 1, 0); \
282 if (free_print_buffer) \
283 { \
284 xfree (print_buffer); \
285 print_buffer = 0; \
286 } \
287 unbind_to (specpdl_count, Qnil); \
288 if (MARKERP (original)) \
289 set_marker_both (original, Qnil, PT, PT_BYTE); \
290 if (old_point >= 0) \
291 SET_PT_BOTH (old_point + (old_point >= start_point \
292 ? PT - start_point : 0), \
293 old_point_byte + (old_point_byte >= start_point_byte \
294 ? PT_BYTE - start_point_byte : 0)); \
295 if (old != current_buffer) \
296 set_buffer_internal (old); \
297 if (!CONSP (Vprint_gensym)) \
298 Vprint_gensym_alist = Qnil
299
300 #define PRINTCHAR(ch) printchar (ch, printcharfun)
301
302 /* Nonzero if there is no room to print any more characters
303 so print might as well return right away. */
304
305 #define PRINTFULLP() \
306 (EQ (printcharfun, Qt) && !noninteractive \
307 && printbufidx >= FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)))))
308
309 /* This is used to restore the saved contents of print_buffer
310 when there is a recursive call to print. */
311 static Lisp_Object
312 print_unwind (saved_text)
313 Lisp_Object saved_text;
314 {
315 bcopy (XSTRING (saved_text)->data, print_buffer, XSTRING (saved_text)->size);
316 }
317
318 /* Index of first unused element of FRAME_MESSAGE_BUF (mini_frame). */
319 static int printbufidx;
320
321 static void
322 printchar (ch, fun)
323 unsigned int ch;
324 Lisp_Object fun;
325 {
326 Lisp_Object ch1;
327
328 #ifdef MAX_PRINT_CHARS
329 if (max_print)
330 print_chars++;
331 #endif /* MAX_PRINT_CHARS */
332 #ifndef standalone
333 if (EQ (fun, Qnil))
334 {
335 int len;
336 unsigned char work[4], *str;
337
338 QUIT;
339 len = CHAR_STRING (ch, work, str);
340 if (print_buffer_pos_byte + len >= print_buffer_size)
341 print_buffer = (char *) xrealloc (print_buffer,
342 print_buffer_size *= 2);
343 bcopy (str, print_buffer + print_buffer_pos_byte, len);
344 print_buffer_pos += 1;
345 print_buffer_pos_byte += len;
346 return;
347 }
348
349 if (EQ (fun, Qt))
350 {
351 FRAME_PTR mini_frame
352 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
353 unsigned char work[4], *str;
354 int len = CHAR_STRING (ch, work, str);
355
356 QUIT;
357
358 if (noninteractive)
359 {
360 while (len--)
361 putchar (*str), str++;
362 noninteractive_need_newline = 1;
363 return;
364 }
365
366 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame)
367 || !message_buf_print)
368 {
369 message_log_maybe_newline ();
370 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame);
371 printbufidx = 0;
372 echo_area_glyphs_length = 0;
373 message_buf_print = 1;
374
375 if (minibuffer_auto_raise)
376 {
377 Lisp_Object mini_window;
378
379 /* Get the frame containing the minibuffer
380 that the selected frame is using. */
381 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
382
383 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
384 }
385 }
386
387 message_dolog (str, len, 0, len > 1);
388
389 /* Convert message to multibyte if we are now adding multibyte text. */
390 if (! NILP (current_buffer->enable_multibyte_characters)
391 && ! message_enable_multibyte
392 && printbufidx > 0)
393 {
394 int size = count_size_as_multibyte (FRAME_MESSAGE_BUF (mini_frame),
395 printbufidx);
396 unsigned char *tembuf = (unsigned char *) alloca (size + 1);
397 copy_text (FRAME_MESSAGE_BUF (mini_frame), tembuf, printbufidx,
398 0, 1);
399 printbufidx = size;
400 if (printbufidx > FRAME_MESSAGE_BUF_SIZE (mini_frame))
401 {
402 printbufidx = FRAME_MESSAGE_BUF_SIZE (mini_frame);
403 /* Rewind incomplete multi-byte form. */
404 while (printbufidx > 0 && tembuf[printbufidx] >= 0xA0)
405 printbufidx--;
406 }
407 bcopy (tembuf, FRAME_MESSAGE_BUF (mini_frame), printbufidx);
408 message_enable_multibyte = 1;
409 }
410
411 if (printbufidx < FRAME_MESSAGE_BUF_SIZE (mini_frame) - len)
412 bcopy (str, &FRAME_MESSAGE_BUF (mini_frame)[printbufidx], len),
413 printbufidx += len;
414 FRAME_MESSAGE_BUF (mini_frame)[printbufidx] = 0;
415 echo_area_glyphs_length = printbufidx;
416
417 return;
418 }
419 #endif /* not standalone */
420
421 XSETFASTINT (ch1, ch);
422 call1 (fun, ch1);
423 }
424
425 static void
426 strout (ptr, size, size_byte, printcharfun, multibyte)
427 char *ptr;
428 int size, size_byte;
429 Lisp_Object printcharfun;
430 int multibyte;
431 {
432 int i = 0;
433
434 if (size < 0)
435 size_byte = size = strlen (ptr);
436
437 if (EQ (printcharfun, Qnil))
438 {
439 if (print_buffer_pos_byte + size_byte > print_buffer_size)
440 {
441 print_buffer_size = print_buffer_size * 2 + size_byte;
442 print_buffer = (char *) xrealloc (print_buffer,
443 print_buffer_size);
444 }
445 bcopy (ptr, print_buffer + print_buffer_pos_byte, size_byte);
446 print_buffer_pos += size;
447 print_buffer_pos_byte += size_byte;
448
449 #ifdef MAX_PRINT_CHARS
450 if (max_print)
451 print_chars += size;
452 #endif /* MAX_PRINT_CHARS */
453 return;
454 }
455 if (EQ (printcharfun, Qt))
456 {
457 FRAME_PTR mini_frame
458 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
459
460 QUIT;
461
462 #ifdef MAX_PRINT_CHARS
463 if (max_print)
464 print_chars += size;
465 #endif /* MAX_PRINT_CHARS */
466
467 if (noninteractive)
468 {
469 fwrite (ptr, 1, size_byte, stdout);
470 noninteractive_need_newline = 1;
471 return;
472 }
473
474 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame)
475 || !message_buf_print)
476 {
477 message_log_maybe_newline ();
478 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame);
479 printbufidx = 0;
480 echo_area_glyphs_length = 0;
481 message_buf_print = 1;
482
483 if (minibuffer_auto_raise)
484 {
485 Lisp_Object mini_window;
486
487 /* Get the frame containing the minibuffer
488 that the selected frame is using. */
489 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
490
491 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
492 }
493 }
494
495 message_dolog (ptr, size_byte, 0, multibyte);
496
497 /* Convert message to multibyte if we are now adding multibyte text. */
498 if (multibyte
499 && ! message_enable_multibyte
500 && printbufidx > 0)
501 {
502 int size = count_size_as_multibyte (FRAME_MESSAGE_BUF (mini_frame),
503 printbufidx);
504 unsigned char *tembuf = (unsigned char *) alloca (size + 1);
505 copy_text (FRAME_MESSAGE_BUF (mini_frame), tembuf, printbufidx,
506 0, 1);
507 printbufidx = size;
508 if (printbufidx > FRAME_MESSAGE_BUF_SIZE (mini_frame))
509 {
510 printbufidx = FRAME_MESSAGE_BUF_SIZE (mini_frame);
511 /* Rewind incomplete multi-byte form. */
512 while (printbufidx > 0 && tembuf[printbufidx] >= 0xA0)
513 printbufidx--;
514 }
515
516 bcopy (tembuf, FRAME_MESSAGE_BUF (mini_frame), printbufidx);
517 message_enable_multibyte = 1;
518 }
519
520 /* Compute how much of the new text will fit there. */
521 if (size_byte > FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1)
522 {
523 size_byte = FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1;
524 /* Rewind incomplete multi-byte form. */
525 while (size_byte && (unsigned char) ptr[size_byte] >= 0xA0)
526 size_byte--;
527 }
528
529 /* Put that part of the new text in. */
530 bcopy (ptr, &FRAME_MESSAGE_BUF (mini_frame) [printbufidx], size_byte);
531 printbufidx += size_byte;
532 FRAME_MESSAGE_BUF (mini_frame) [printbufidx] = 0;
533 echo_area_glyphs_length = printbufidx;
534
535 return;
536 }
537
538 i = 0;
539 if (size == size_byte)
540 while (i < size_byte)
541 {
542 int ch = ptr[i++];
543
544 PRINTCHAR (ch);
545 }
546 else
547 while (i < size_byte)
548 {
549 /* Here, we must convert each multi-byte form to the
550 corresponding character code before handing it to PRINTCHAR. */
551 int len;
552 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
553
554 PRINTCHAR (ch);
555 i += len;
556 }
557 }
558
559 /* Print the contents of a string STRING using PRINTCHARFUN.
560 It isn't safe to use strout in many cases,
561 because printing one char can relocate. */
562
563 static void
564 print_string (string, printcharfun)
565 Lisp_Object string;
566 Lisp_Object printcharfun;
567 {
568 if (EQ (printcharfun, Qt) || NILP (printcharfun))
569 /* strout is safe for output to a frame (echo area) or to print_buffer. */
570 strout (XSTRING (string)->data,
571 XSTRING (string)->size,
572 STRING_BYTES (XSTRING (string)),
573 printcharfun, STRING_MULTIBYTE (string));
574 else
575 {
576 /* Otherwise, string may be relocated by printing one char.
577 So re-fetch the string address for each character. */
578 int i;
579 int size = XSTRING (string)->size;
580 int size_byte = STRING_BYTES (XSTRING (string));
581 struct gcpro gcpro1;
582 GCPRO1 (string);
583 if (size == size_byte)
584 for (i = 0; i < size; i++)
585 PRINTCHAR (XSTRING (string)->data[i]);
586 else
587 for (i = 0; i < size_byte; i++)
588 {
589 /* Here, we must convert each multi-byte form to the
590 corresponding character code before handing it to PRINTCHAR. */
591 int len;
592 int ch = STRING_CHAR_AND_CHAR_LENGTH (XSTRING (string)->data + i,
593 size_byte - i, len);
594
595 PRINTCHAR (ch);
596 i += len;
597 }
598 UNGCPRO;
599 }
600 }
601 \f
602 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
603 "Output character CHARACTER to stream PRINTCHARFUN.\n\
604 PRINTCHARFUN defaults to the value of `standard-output' (which see).")
605 (character, printcharfun)
606 Lisp_Object character, printcharfun;
607 {
608 PRINTDECLARE;
609
610 if (NILP (printcharfun))
611 printcharfun = Vstandard_output;
612 CHECK_NUMBER (character, 0);
613 PRINTPREPARE;
614 PRINTCHAR (XINT (character));
615 PRINTFINISH;
616 return character;
617 }
618
619 /* Used from outside of print.c to print a block of SIZE
620 single-byte chars at DATA on the default output stream.
621 Do not use this on the contents of a Lisp string. */
622
623 void
624 write_string (data, size)
625 char *data;
626 int size;
627 {
628 PRINTDECLARE;
629 Lisp_Object printcharfun;
630
631 printcharfun = Vstandard_output;
632
633 PRINTPREPARE;
634 strout (data, size, size, printcharfun, 0);
635 PRINTFINISH;
636 }
637
638 /* Used from outside of print.c to print a block of SIZE
639 single-byte chars at DATA on a specified stream PRINTCHARFUN.
640 Do not use this on the contents of a Lisp string. */
641
642 void
643 write_string_1 (data, size, printcharfun)
644 char *data;
645 int size;
646 Lisp_Object printcharfun;
647 {
648 PRINTDECLARE;
649
650 PRINTPREPARE;
651 strout (data, size, size, printcharfun, 0);
652 PRINTFINISH;
653 }
654
655
656 #ifndef standalone
657
658 void
659 temp_output_buffer_setup (bufname)
660 char *bufname;
661 {
662 register struct buffer *old = current_buffer;
663 register Lisp_Object buf;
664
665 Fset_buffer (Fget_buffer_create (build_string (bufname)));
666
667 current_buffer->directory = old->directory;
668 current_buffer->read_only = Qnil;
669 current_buffer->filename = Qnil;
670 current_buffer->undo_list = Qt;
671 current_buffer->overlays_before = Qnil;
672 current_buffer->overlays_after = Qnil;
673 current_buffer->enable_multibyte_characters
674 = buffer_defaults.enable_multibyte_characters;
675 Ferase_buffer ();
676
677 XSETBUFFER (buf, current_buffer);
678 specbind (Qstandard_output, buf);
679
680 set_buffer_internal (old);
681 }
682
683 Lisp_Object
684 internal_with_output_to_temp_buffer (bufname, function, args)
685 char *bufname;
686 Lisp_Object (*function) P_ ((Lisp_Object));
687 Lisp_Object args;
688 {
689 int count = specpdl_ptr - specpdl;
690 Lisp_Object buf, val;
691 struct gcpro gcpro1;
692
693 GCPRO1 (args);
694 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
695 temp_output_buffer_setup (bufname);
696 buf = Vstandard_output;
697 UNGCPRO;
698
699 val = (*function) (args);
700
701 GCPRO1 (val);
702 temp_output_buffer_show (buf);
703 UNGCPRO;
704
705 return unbind_to (count, val);
706 }
707
708 DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer,
709 1, UNEVALLED, 0,
710 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.\n\
711 The buffer is cleared out initially, and marked as unmodified when done.\n\
712 All output done by BODY is inserted in that buffer by default.\n\
713 The buffer is displayed in another window, but not selected.\n\
714 The value of the last form in BODY is returned.\n\
715 If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\n\
716 If variable `temp-buffer-show-function' is non-nil, call it at the end\n\
717 to get the buffer displayed. It gets one argument, the buffer to display.")
718 (args)
719 Lisp_Object args;
720 {
721 struct gcpro gcpro1;
722 Lisp_Object name;
723 int count = specpdl_ptr - specpdl;
724 Lisp_Object buf, val;
725
726 GCPRO1(args);
727 name = Feval (Fcar (args));
728 UNGCPRO;
729
730 CHECK_STRING (name, 0);
731 temp_output_buffer_setup (XSTRING (name)->data);
732 buf = Vstandard_output;
733
734 val = Fprogn (Fcdr (args));
735
736 temp_output_buffer_show (buf);
737
738 return unbind_to (count, val);
739 }
740 #endif /* not standalone */
741 \f
742 static void print ();
743
744 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
745 "Output a newline to stream PRINTCHARFUN.\n\
746 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.")
747 (printcharfun)
748 Lisp_Object printcharfun;
749 {
750 PRINTDECLARE;
751
752 if (NILP (printcharfun))
753 printcharfun = Vstandard_output;
754 PRINTPREPARE;
755 PRINTCHAR ('\n');
756 PRINTFINISH;
757 return Qt;
758 }
759
760 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
761 "Output the printed representation of OBJECT, any Lisp object.\n\
762 Quoting characters are printed when needed to make output that `read'\n\
763 can handle, whenever this is possible.\n\
764 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
765 (object, printcharfun)
766 Lisp_Object object, printcharfun;
767 {
768 PRINTDECLARE;
769
770 #ifdef MAX_PRINT_CHARS
771 max_print = 0;
772 #endif /* MAX_PRINT_CHARS */
773 if (NILP (printcharfun))
774 printcharfun = Vstandard_output;
775 PRINTPREPARE;
776 print_depth = 0;
777 print (object, printcharfun, 1);
778 PRINTFINISH;
779 return object;
780 }
781
782 /* a buffer which is used to hold output being built by prin1-to-string */
783 Lisp_Object Vprin1_to_string_buffer;
784
785 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
786 "Return a string containing the printed representation of OBJECT,\n\
787 any Lisp object. Quoting characters are used when needed to make output\n\
788 that `read' can handle, whenever this is possible, unless the optional\n\
789 second argument NOESCAPE is non-nil.")
790 (object, noescape)
791 Lisp_Object object, noescape;
792 {
793 PRINTDECLARE;
794 Lisp_Object printcharfun;
795 struct gcpro gcpro1, gcpro2;
796 Lisp_Object tem;
797
798 /* Save and restore this--we are altering a buffer
799 but we don't want to deactivate the mark just for that.
800 No need for specbind, since errors deactivate the mark. */
801 tem = Vdeactivate_mark;
802 GCPRO2 (object, tem);
803
804 printcharfun = Vprin1_to_string_buffer;
805 PRINTPREPARE;
806 print_depth = 0;
807 print (object, printcharfun, NILP (noescape));
808 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
809 PRINTFINISH;
810 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
811 object = Fbuffer_string ();
812
813 Ferase_buffer ();
814 set_buffer_internal (old);
815
816 Vdeactivate_mark = tem;
817 UNGCPRO;
818
819 return object;
820 }
821
822 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
823 "Output the printed representation of OBJECT, any Lisp object.\n\
824 No quoting characters are used; no delimiters are printed around\n\
825 the contents of strings.\n\
826 Output stream is PRINTCHARFUN, or value of standard-output (which see).")
827 (object, printcharfun)
828 Lisp_Object object, printcharfun;
829 {
830 PRINTDECLARE;
831
832 if (NILP (printcharfun))
833 printcharfun = Vstandard_output;
834 PRINTPREPARE;
835 print_depth = 0;
836 print (object, printcharfun, 0);
837 PRINTFINISH;
838 return object;
839 }
840
841 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
842 "Output the printed representation of OBJECT, with newlines around it.\n\
843 Quoting characters are printed when needed to make output that `read'\n\
844 can handle, whenever this is possible.\n\
845 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
846 (object, printcharfun)
847 Lisp_Object object, printcharfun;
848 {
849 PRINTDECLARE;
850 struct gcpro gcpro1;
851
852 #ifdef MAX_PRINT_CHARS
853 print_chars = 0;
854 max_print = MAX_PRINT_CHARS;
855 #endif /* MAX_PRINT_CHARS */
856 if (NILP (printcharfun))
857 printcharfun = Vstandard_output;
858 GCPRO1 (object);
859 PRINTPREPARE;
860 print_depth = 0;
861 PRINTCHAR ('\n');
862 print (object, printcharfun, 1);
863 PRINTCHAR ('\n');
864 PRINTFINISH;
865 #ifdef MAX_PRINT_CHARS
866 max_print = 0;
867 print_chars = 0;
868 #endif /* MAX_PRINT_CHARS */
869 UNGCPRO;
870 return object;
871 }
872
873 /* The subroutine object for external-debugging-output is kept here
874 for the convenience of the debugger. */
875 Lisp_Object Qexternal_debugging_output;
876
877 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
878 "Write CHARACTER to stderr.\n\
879 You can call print while debugging emacs, and pass it this function\n\
880 to make it write to the debugging output.\n")
881 (character)
882 Lisp_Object character;
883 {
884 CHECK_NUMBER (character, 0);
885 putc (XINT (character), stderr);
886
887 #ifdef WINDOWSNT
888 /* Send the output to a debugger (nothing happens if there isn't one). */
889 {
890 char buf[2] = {(char) XINT (character), '\0'};
891 OutputDebugString (buf);
892 }
893 #endif
894
895 return character;
896 }
897
898 /* This is the interface for debugging printing. */
899
900 void
901 debug_print (arg)
902 Lisp_Object arg;
903 {
904 Fprin1 (arg, Qexternal_debugging_output);
905 fprintf (stderr, "\r\n");
906 }
907 \f
908 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
909 1, 1, 0,
910 "Convert an error value (ERROR-SYMBOL . DATA) to an error message.")
911 (obj)
912 Lisp_Object obj;
913 {
914 struct buffer *old = current_buffer;
915 Lisp_Object original, printcharfun, value;
916 struct gcpro gcpro1;
917
918 /* If OBJ is (error STRING), just return STRING.
919 That is not only faster, it also avoids the need to allocate
920 space here when the error is due to memory full. */
921 if (CONSP (obj) && EQ (XCONS (obj)->car, Qerror)
922 && CONSP (XCONS (obj)->cdr)
923 && STRINGP (XCONS (XCONS (obj)->cdr)->car)
924 && NILP (XCONS (XCONS (obj)->cdr)->cdr))
925 return XCONS (XCONS (obj)->cdr)->car;
926
927 print_error_message (obj, Vprin1_to_string_buffer);
928
929 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
930 value = Fbuffer_string ();
931
932 GCPRO1 (value);
933 Ferase_buffer ();
934 set_buffer_internal (old);
935 UNGCPRO;
936
937 return value;
938 }
939
940 /* Print an error message for the error DATA
941 onto Lisp output stream STREAM (suitable for the print functions). */
942
943 void
944 print_error_message (data, stream)
945 Lisp_Object data, stream;
946 {
947 Lisp_Object errname, errmsg, file_error, tail;
948 struct gcpro gcpro1;
949 int i;
950
951 errname = Fcar (data);
952
953 if (EQ (errname, Qerror))
954 {
955 data = Fcdr (data);
956 if (!CONSP (data)) data = Qnil;
957 errmsg = Fcar (data);
958 file_error = Qnil;
959 }
960 else
961 {
962 errmsg = Fget (errname, Qerror_message);
963 file_error = Fmemq (Qfile_error,
964 Fget (errname, Qerror_conditions));
965 }
966
967 /* Print an error message including the data items. */
968
969 tail = Fcdr_safe (data);
970 GCPRO1 (tail);
971
972 /* For file-error, make error message by concatenating
973 all the data items. They are all strings. */
974 if (!NILP (file_error) && !NILP (tail))
975 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr;
976
977 if (STRINGP (errmsg))
978 Fprinc (errmsg, stream);
979 else
980 write_string_1 ("peculiar error", -1, stream);
981
982 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
983 {
984 write_string_1 (i ? ", " : ": ", 2, stream);
985 if (!NILP (file_error))
986 Fprinc (Fcar (tail), stream);
987 else
988 Fprin1 (Fcar (tail), stream);
989 }
990 UNGCPRO;
991 }
992 \f
993 #ifdef LISP_FLOAT_TYPE
994
995 /*
996 * The buffer should be at least as large as the max string size of the
997 * largest float, printed in the biggest notation. This is undoubtedly
998 * 20d float_output_format, with the negative of the C-constant "HUGE"
999 * from <math.h>.
1000 *
1001 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
1002 *
1003 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
1004 * case of -1e307 in 20d float_output_format. What is one to do (short of
1005 * re-writing _doprnt to be more sane)?
1006 * -wsr
1007 */
1008
1009 void
1010 float_to_string (buf, data)
1011 unsigned char *buf;
1012 double data;
1013 {
1014 unsigned char *cp;
1015 int width;
1016
1017 /* Check for plus infinity in a way that won't lose
1018 if there is no plus infinity. */
1019 if (data == data / 2 && data > 1.0)
1020 {
1021 strcpy (buf, "1.0e+INF");
1022 return;
1023 }
1024 /* Likewise for minus infinity. */
1025 if (data == data / 2 && data < -1.0)
1026 {
1027 strcpy (buf, "-1.0e+INF");
1028 return;
1029 }
1030 /* Check for NaN in a way that won't fail if there are no NaNs. */
1031 if (! (data * 0.0 >= 0.0))
1032 {
1033 strcpy (buf, "0.0e+NaN");
1034 return;
1035 }
1036
1037 if (NILP (Vfloat_output_format)
1038 || !STRINGP (Vfloat_output_format))
1039 lose:
1040 {
1041 /* Generate the fewest number of digits that represent the
1042 floating point value without losing information.
1043 The following method is simple but a bit slow.
1044 For ideas about speeding things up, please see:
1045
1046 Guy L Steele Jr & Jon L White, How to print floating-point numbers
1047 accurately. SIGPLAN notices 25, 6 (June 1990), 112-126.
1048
1049 Robert G Burger & R Kent Dybvig, Printing floating point numbers
1050 quickly and accurately, SIGPLAN notices 31, 5 (May 1996), 108-116. */
1051
1052 width = fabs (data) < DBL_MIN ? 1 : DBL_DIG;
1053 do
1054 sprintf (buf, "%.*g", width, data);
1055 while (width++ < DOUBLE_DIGITS_BOUND && atof (buf) != data);
1056 }
1057 else /* oink oink */
1058 {
1059 /* Check that the spec we have is fully valid.
1060 This means not only valid for printf,
1061 but meant for floats, and reasonable. */
1062 cp = XSTRING (Vfloat_output_format)->data;
1063
1064 if (cp[0] != '%')
1065 goto lose;
1066 if (cp[1] != '.')
1067 goto lose;
1068
1069 cp += 2;
1070
1071 /* Check the width specification. */
1072 width = -1;
1073 if ('0' <= *cp && *cp <= '9')
1074 {
1075 width = 0;
1076 do
1077 width = (width * 10) + (*cp++ - '0');
1078 while (*cp >= '0' && *cp <= '9');
1079
1080 /* A precision of zero is valid only for %f. */
1081 if (width > DBL_DIG
1082 || (width == 0 && *cp != 'f'))
1083 goto lose;
1084 }
1085
1086 if (*cp != 'e' && *cp != 'f' && *cp != 'g')
1087 goto lose;
1088
1089 if (cp[1] != 0)
1090 goto lose;
1091
1092 sprintf (buf, XSTRING (Vfloat_output_format)->data, data);
1093 }
1094
1095 /* Make sure there is a decimal point with digit after, or an
1096 exponent, so that the value is readable as a float. But don't do
1097 this with "%.0f"; it's valid for that not to produce a decimal
1098 point. Note that width can be 0 only for %.0f. */
1099 if (width != 0)
1100 {
1101 for (cp = buf; *cp; cp++)
1102 if ((*cp < '0' || *cp > '9') && *cp != '-')
1103 break;
1104
1105 if (*cp == '.' && cp[1] == 0)
1106 {
1107 cp[1] = '0';
1108 cp[2] = 0;
1109 }
1110
1111 if (*cp == 0)
1112 {
1113 *cp++ = '.';
1114 *cp++ = '0';
1115 *cp++ = 0;
1116 }
1117 }
1118 }
1119 #endif /* LISP_FLOAT_TYPE */
1120 \f
1121 static void
1122 print (obj, printcharfun, escapeflag)
1123 Lisp_Object obj;
1124 register Lisp_Object printcharfun;
1125 int escapeflag;
1126 {
1127 char buf[30];
1128
1129 QUIT;
1130
1131 #if 1 /* I'm not sure this is really worth doing. */
1132 /* Detect circularities and truncate them.
1133 No need to offer any alternative--this is better than an error. */
1134 if (CONSP (obj) || VECTORP (obj) || COMPILEDP (obj))
1135 {
1136 int i;
1137 for (i = 0; i < print_depth; i++)
1138 if (EQ (obj, being_printed[i]))
1139 {
1140 sprintf (buf, "#%d", i);
1141 strout (buf, -1, -1, printcharfun, 0);
1142 return;
1143 }
1144 }
1145 #endif
1146
1147 being_printed[print_depth] = obj;
1148 print_depth++;
1149
1150 if (print_depth > PRINT_CIRCLE)
1151 error ("Apparently circular structure being printed");
1152 #ifdef MAX_PRINT_CHARS
1153 if (max_print && print_chars > max_print)
1154 {
1155 PRINTCHAR ('\n');
1156 print_chars = 0;
1157 }
1158 #endif /* MAX_PRINT_CHARS */
1159
1160 switch (XGCTYPE (obj))
1161 {
1162 case Lisp_Int:
1163 if (sizeof (int) == sizeof (EMACS_INT))
1164 sprintf (buf, "%d", XINT (obj));
1165 else if (sizeof (long) == sizeof (EMACS_INT))
1166 sprintf (buf, "%ld", XINT (obj));
1167 else
1168 abort ();
1169 strout (buf, -1, -1, printcharfun, 0);
1170 break;
1171
1172 #ifdef LISP_FLOAT_TYPE
1173 case Lisp_Float:
1174 {
1175 char pigbuf[350]; /* see comments in float_to_string */
1176
1177 float_to_string (pigbuf, XFLOAT(obj)->data);
1178 strout (pigbuf, -1, -1, printcharfun, 0);
1179 }
1180 break;
1181 #endif
1182
1183 case Lisp_String:
1184 if (!escapeflag)
1185 print_string (obj, printcharfun);
1186 else
1187 {
1188 register int i, i_byte;
1189 register unsigned char c;
1190 struct gcpro gcpro1;
1191 unsigned char *str;
1192 int size_byte;
1193 /* 1 means we must ensure that the next character we output
1194 cannot be taken as part of a hex character escape. */
1195 int need_nonhex = 0;
1196
1197 GCPRO1 (obj);
1198
1199 #ifdef USE_TEXT_PROPERTIES
1200 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1201 {
1202 PRINTCHAR ('#');
1203 PRINTCHAR ('(');
1204 }
1205 #endif
1206
1207 PRINTCHAR ('\"');
1208 str = XSTRING (obj)->data;
1209 size_byte = STRING_BYTES (XSTRING (obj));
1210
1211 for (i = 0, i_byte = 0; i_byte < size_byte;)
1212 {
1213 /* Here, we must convert each multi-byte form to the
1214 corresponding character code before handing it to PRINTCHAR. */
1215 int len;
1216 int c;
1217
1218 if (STRING_MULTIBYTE (obj))
1219 {
1220 c = STRING_CHAR_AND_CHAR_LENGTH (str + i_byte,
1221 size_byte - i_byte, len);
1222 i_byte += len;
1223 }
1224 else
1225 c = str[i_byte++];
1226
1227 QUIT;
1228
1229 if (c == '\n' && print_escape_newlines)
1230 {
1231 PRINTCHAR ('\\');
1232 PRINTCHAR ('n');
1233 }
1234 else if (c == '\f' && print_escape_newlines)
1235 {
1236 PRINTCHAR ('\\');
1237 PRINTCHAR ('f');
1238 }
1239 else if ((! SINGLE_BYTE_CHAR_P (c)
1240 && NILP (current_buffer->enable_multibyte_characters)))
1241 {
1242 /* When multibyte is disabled,
1243 print multibyte string chars using hex escapes. */
1244 unsigned char outbuf[50];
1245 sprintf (outbuf, "\\x%x", c);
1246 strout (outbuf, -1, -1, printcharfun, 0);
1247 need_nonhex = 1;
1248 }
1249 else if (SINGLE_BYTE_CHAR_P (c)
1250 && ! ASCII_BYTE_P (c)
1251 && ! NILP (current_buffer->enable_multibyte_characters))
1252 {
1253 /* When multibyte is enabled,
1254 print single-byte non-ASCII string chars
1255 using octal escapes. */
1256 unsigned char outbuf[5];
1257 sprintf (outbuf, "\\%03o", c);
1258 strout (outbuf, -1, -1, printcharfun, 0);
1259 }
1260 else
1261 {
1262 /* If we just had a hex escape, and this character
1263 could be taken as part of it,
1264 output `\ ' to prevent that. */
1265 if (need_nonhex)
1266 {
1267 need_nonhex = 0;
1268 if ((c >= 'a' && c <= 'f')
1269 || (c >= 'A' && c <= 'F')
1270 || (c >= '0' && c <= '9'))
1271 strout ("\\ ", -1, -1, printcharfun, 0);
1272 }
1273
1274 if (c == '\"' || c == '\\')
1275 PRINTCHAR ('\\');
1276 PRINTCHAR (c);
1277 }
1278 }
1279 PRINTCHAR ('\"');
1280
1281 #ifdef USE_TEXT_PROPERTIES
1282 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1283 {
1284 traverse_intervals (XSTRING (obj)->intervals,
1285 0, 0, print_interval, printcharfun);
1286 PRINTCHAR (')');
1287 }
1288 #endif
1289
1290 UNGCPRO;
1291 }
1292 break;
1293
1294 case Lisp_Symbol:
1295 {
1296 register int confusing;
1297 register unsigned char *p = XSYMBOL (obj)->name->data;
1298 register unsigned char *end = p + STRING_BYTES (XSYMBOL (obj)->name);
1299 register int c;
1300 int i, i_byte, size_byte;
1301 Lisp_Object name;
1302
1303 XSETSTRING (name, XSYMBOL (obj)->name);
1304
1305 if (p != end && (*p == '-' || *p == '+')) p++;
1306 if (p == end)
1307 confusing = 0;
1308 /* If symbol name begins with a digit, and ends with a digit,
1309 and contains nothing but digits and `e', it could be treated
1310 as a number. So set CONFUSING.
1311
1312 Symbols that contain periods could also be taken as numbers,
1313 but periods are always escaped, so we don't have to worry
1314 about them here. */
1315 else if (*p >= '0' && *p <= '9'
1316 && end[-1] >= '0' && end[-1] <= '9')
1317 {
1318 while (p != end && ((*p >= '0' && *p <= '9')
1319 /* Needed for \2e10. */
1320 || *p == 'e'))
1321 p++;
1322 confusing = (end == p);
1323 }
1324 else
1325 confusing = 0;
1326
1327 /* If we print an uninterned symbol as part of a complex object and
1328 the flag print-gensym is non-nil, prefix it with #n= to read the
1329 object back with the #n# reader syntax later if needed. */
1330 if (! NILP (Vprint_gensym) && NILP (XSYMBOL (obj)->obarray))
1331 {
1332 if (print_depth > 1)
1333 {
1334 Lisp_Object tem;
1335 tem = Fassq (obj, Vprint_gensym_alist);
1336 if (CONSP (tem))
1337 {
1338 PRINTCHAR ('#');
1339 print (XCDR (tem), printcharfun, escapeflag);
1340 PRINTCHAR ('#');
1341 break;
1342 }
1343 else
1344 {
1345 if (CONSP (Vprint_gensym_alist))
1346 XSETFASTINT (tem, XFASTINT (XCDR (XCAR (Vprint_gensym_alist))) + 1);
1347 else
1348 XSETFASTINT (tem, 1);
1349 Vprint_gensym_alist = Fcons (Fcons (obj, tem), Vprint_gensym_alist);
1350
1351 PRINTCHAR ('#');
1352 print (tem, printcharfun, escapeflag);
1353 PRINTCHAR ('=');
1354 }
1355 }
1356 PRINTCHAR ('#');
1357 PRINTCHAR (':');
1358 }
1359
1360 size_byte = STRING_BYTES (XSTRING (name));
1361
1362 for (i = 0, i_byte = 0; i_byte < size_byte;)
1363 {
1364 /* Here, we must convert each multi-byte form to the
1365 corresponding character code before handing it to PRINTCHAR. */
1366
1367 if (STRING_MULTIBYTE (name))
1368 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1369 else
1370 c = XSTRING (name)->data[i_byte++];
1371
1372 QUIT;
1373
1374 if (escapeflag)
1375 {
1376 if (c == '\"' || c == '\\' || c == '\''
1377 || c == ';' || c == '#' || c == '(' || c == ')'
1378 || c == ',' || c =='.' || c == '`'
1379 || c == '[' || c == ']' || c == '?' || c <= 040
1380 || confusing)
1381 PRINTCHAR ('\\'), confusing = 0;
1382 }
1383 PRINTCHAR (c);
1384 }
1385 }
1386 break;
1387
1388 case Lisp_Cons:
1389 /* If deeper than spec'd depth, print placeholder. */
1390 if (INTEGERP (Vprint_level)
1391 && print_depth > XINT (Vprint_level))
1392 strout ("...", -1, -1, printcharfun, 0);
1393 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1394 && (EQ (XCAR (obj), Qquote)))
1395 {
1396 PRINTCHAR ('\'');
1397 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1398 }
1399 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1400 && (EQ (XCAR (obj), Qfunction)))
1401 {
1402 PRINTCHAR ('#');
1403 PRINTCHAR ('\'');
1404 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1405 }
1406 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1407 && ((EQ (XCAR (obj), Qbackquote)
1408 || EQ (XCAR (obj), Qcomma)
1409 || EQ (XCAR (obj), Qcomma_at)
1410 || EQ (XCAR (obj), Qcomma_dot))))
1411 {
1412 print (XCAR (obj), printcharfun, 0);
1413 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1414 }
1415 else
1416 {
1417 PRINTCHAR ('(');
1418 {
1419 register int i = 0;
1420 register int print_length = 0;
1421
1422 if (INTEGERP (Vprint_length))
1423 print_length = XINT (Vprint_length);
1424 /* Could recognize circularities in cdrs here,
1425 but that would make printing of long lists quadratic.
1426 It's not worth doing. */
1427 while (CONSP (obj))
1428 {
1429 if (i++)
1430 PRINTCHAR (' ');
1431 if (print_length && i > print_length)
1432 {
1433 strout ("...", 3, 3, printcharfun, 0);
1434 break;
1435 }
1436 print (XCAR (obj), printcharfun, escapeflag);
1437 obj = XCDR (obj);
1438 }
1439 }
1440 if (!NILP (obj))
1441 {
1442 strout (" . ", 3, 3, printcharfun, 0);
1443 print (obj, printcharfun, escapeflag);
1444 }
1445 PRINTCHAR (')');
1446 }
1447 break;
1448
1449 case Lisp_Vectorlike:
1450 if (PROCESSP (obj))
1451 {
1452 if (escapeflag)
1453 {
1454 strout ("#<process ", -1, -1, printcharfun, 0);
1455 print_string (XPROCESS (obj)->name, printcharfun);
1456 PRINTCHAR ('>');
1457 }
1458 else
1459 print_string (XPROCESS (obj)->name, printcharfun);
1460 }
1461 else if (BOOL_VECTOR_P (obj))
1462 {
1463 register int i;
1464 register unsigned char c;
1465 struct gcpro gcpro1;
1466 int size_in_chars
1467 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
1468
1469 GCPRO1 (obj);
1470
1471 PRINTCHAR ('#');
1472 PRINTCHAR ('&');
1473 sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
1474 strout (buf, -1, -1, printcharfun, 0);
1475 PRINTCHAR ('\"');
1476
1477 /* Don't print more characters than the specified maximum. */
1478 if (INTEGERP (Vprint_length)
1479 && XINT (Vprint_length) < size_in_chars)
1480 size_in_chars = XINT (Vprint_length);
1481
1482 for (i = 0; i < size_in_chars; i++)
1483 {
1484 QUIT;
1485 c = XBOOL_VECTOR (obj)->data[i];
1486 if (c == '\n' && print_escape_newlines)
1487 {
1488 PRINTCHAR ('\\');
1489 PRINTCHAR ('n');
1490 }
1491 else if (c == '\f' && print_escape_newlines)
1492 {
1493 PRINTCHAR ('\\');
1494 PRINTCHAR ('f');
1495 }
1496 else
1497 {
1498 if (c == '\"' || c == '\\')
1499 PRINTCHAR ('\\');
1500 PRINTCHAR (c);
1501 }
1502 }
1503 PRINTCHAR ('\"');
1504
1505 UNGCPRO;
1506 }
1507 else if (SUBRP (obj))
1508 {
1509 strout ("#<subr ", -1, -1, printcharfun, 0);
1510 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun, 0);
1511 PRINTCHAR ('>');
1512 }
1513 #ifndef standalone
1514 else if (WINDOWP (obj))
1515 {
1516 strout ("#<window ", -1, -1, printcharfun, 0);
1517 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number));
1518 strout (buf, -1, -1, printcharfun, 0);
1519 if (!NILP (XWINDOW (obj)->buffer))
1520 {
1521 strout (" on ", -1, -1, printcharfun, 0);
1522 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
1523 }
1524 PRINTCHAR ('>');
1525 }
1526 else if (BUFFERP (obj))
1527 {
1528 if (NILP (XBUFFER (obj)->name))
1529 strout ("#<killed buffer>", -1, -1, printcharfun, 0);
1530 else if (escapeflag)
1531 {
1532 strout ("#<buffer ", -1, -1, printcharfun, 0);
1533 print_string (XBUFFER (obj)->name, printcharfun);
1534 PRINTCHAR ('>');
1535 }
1536 else
1537 print_string (XBUFFER (obj)->name, printcharfun);
1538 }
1539 else if (WINDOW_CONFIGURATIONP (obj))
1540 {
1541 strout ("#<window-configuration>", -1, -1, printcharfun, 0);
1542 }
1543 else if (FRAMEP (obj))
1544 {
1545 strout ((FRAME_LIVE_P (XFRAME (obj))
1546 ? "#<frame " : "#<dead frame "),
1547 -1, -1, printcharfun, 0);
1548 print_string (XFRAME (obj)->name, printcharfun);
1549 sprintf (buf, " 0x%lx\\ ", (unsigned long) (XFRAME (obj)));
1550 strout (buf, -1, -1, printcharfun, 0);
1551 PRINTCHAR ('>');
1552 }
1553 #endif /* not standalone */
1554 else
1555 {
1556 int size = XVECTOR (obj)->size;
1557 if (COMPILEDP (obj))
1558 {
1559 PRINTCHAR ('#');
1560 size &= PSEUDOVECTOR_SIZE_MASK;
1561 }
1562 if (CHAR_TABLE_P (obj))
1563 {
1564 /* We print a char-table as if it were a vector,
1565 lumping the parent and default slots in with the
1566 character slots. But we add #^ as a prefix. */
1567 PRINTCHAR ('#');
1568 PRINTCHAR ('^');
1569 if (SUB_CHAR_TABLE_P (obj))
1570 PRINTCHAR ('^');
1571 size &= PSEUDOVECTOR_SIZE_MASK;
1572 }
1573 if (size & PSEUDOVECTOR_FLAG)
1574 goto badtype;
1575
1576 PRINTCHAR ('[');
1577 {
1578 register int i;
1579 register Lisp_Object tem;
1580
1581 /* Don't print more elements than the specified maximum. */
1582 if (INTEGERP (Vprint_length)
1583 && XINT (Vprint_length) < size)
1584 size = XINT (Vprint_length);
1585
1586 for (i = 0; i < size; i++)
1587 {
1588 if (i) PRINTCHAR (' ');
1589 tem = XVECTOR (obj)->contents[i];
1590 print (tem, printcharfun, escapeflag);
1591 }
1592 }
1593 PRINTCHAR (']');
1594 }
1595 break;
1596
1597 #ifndef standalone
1598 case Lisp_Misc:
1599 switch (XMISCTYPE (obj))
1600 {
1601 case Lisp_Misc_Marker:
1602 strout ("#<marker ", -1, -1, printcharfun, 0);
1603 /* Do you think this is necessary? */
1604 if (XMARKER (obj)->insertion_type != 0)
1605 strout ("(before-insertion) ", -1, -1, printcharfun, 0);
1606 if (!(XMARKER (obj)->buffer))
1607 strout ("in no buffer", -1, -1, printcharfun, 0);
1608 else
1609 {
1610 sprintf (buf, "at %d", marker_position (obj));
1611 strout (buf, -1, -1, printcharfun, 0);
1612 strout (" in ", -1, -1, printcharfun, 0);
1613 print_string (XMARKER (obj)->buffer->name, printcharfun);
1614 }
1615 PRINTCHAR ('>');
1616 break;
1617
1618 case Lisp_Misc_Overlay:
1619 strout ("#<overlay ", -1, -1, printcharfun, 0);
1620 if (!(XMARKER (OVERLAY_START (obj))->buffer))
1621 strout ("in no buffer", -1, -1, printcharfun, 0);
1622 else
1623 {
1624 sprintf (buf, "from %d to %d in ",
1625 marker_position (OVERLAY_START (obj)),
1626 marker_position (OVERLAY_END (obj)));
1627 strout (buf, -1, -1, printcharfun, 0);
1628 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
1629 printcharfun);
1630 }
1631 PRINTCHAR ('>');
1632 break;
1633
1634 /* Remaining cases shouldn't happen in normal usage, but let's print
1635 them anyway for the benefit of the debugger. */
1636 case Lisp_Misc_Free:
1637 strout ("#<misc free cell>", -1, -1, printcharfun, 0);
1638 break;
1639
1640 case Lisp_Misc_Intfwd:
1641 sprintf (buf, "#<intfwd to %d>", *XINTFWD (obj)->intvar);
1642 strout (buf, -1, -1, printcharfun, 0);
1643 break;
1644
1645 case Lisp_Misc_Boolfwd:
1646 sprintf (buf, "#<boolfwd to %s>",
1647 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
1648 strout (buf, -1, -1, printcharfun, 0);
1649 break;
1650
1651 case Lisp_Misc_Objfwd:
1652 strout ("#<objfwd to ", -1, -1, printcharfun, 0);
1653 print (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
1654 PRINTCHAR ('>');
1655 break;
1656
1657 case Lisp_Misc_Buffer_Objfwd:
1658 strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
1659 print (*(Lisp_Object *)((char *)current_buffer
1660 + XBUFFER_OBJFWD (obj)->offset),
1661 printcharfun, escapeflag);
1662 PRINTCHAR ('>');
1663 break;
1664
1665 case Lisp_Misc_Kboard_Objfwd:
1666 strout ("#<kboard_objfwd to ", -1, -1, printcharfun, 0);
1667 print (*(Lisp_Object *)((char *) current_kboard
1668 + XKBOARD_OBJFWD (obj)->offset),
1669 printcharfun, escapeflag);
1670 PRINTCHAR ('>');
1671 break;
1672
1673 case Lisp_Misc_Buffer_Local_Value:
1674 strout ("#<buffer_local_value ", -1, -1, printcharfun, 0);
1675 goto do_buffer_local;
1676 case Lisp_Misc_Some_Buffer_Local_Value:
1677 strout ("#<some_buffer_local_value ", -1, -1, printcharfun, 0);
1678 do_buffer_local:
1679 strout ("[realvalue] ", -1, -1, printcharfun, 0);
1680 print (XBUFFER_LOCAL_VALUE (obj)->realvalue, printcharfun, escapeflag);
1681 if (XBUFFER_LOCAL_VALUE (obj)->found_for_buffer)
1682 strout ("[local in buffer] ", -1, -1, printcharfun, 0);
1683 else
1684 strout ("[buffer] ", -1, -1, printcharfun, 0);
1685 print (XBUFFER_LOCAL_VALUE (obj)->buffer,
1686 printcharfun, escapeflag);
1687 if (XBUFFER_LOCAL_VALUE (obj)->check_frame)
1688 {
1689 if (XBUFFER_LOCAL_VALUE (obj)->found_for_frame)
1690 strout ("[local in frame] ", -1, -1, printcharfun, 0);
1691 else
1692 strout ("[frame] ", -1, -1, printcharfun, 0);
1693 print (XBUFFER_LOCAL_VALUE (obj)->frame,
1694 printcharfun, escapeflag);
1695 }
1696 strout ("[alist-elt] ", -1, -1, printcharfun, 0);
1697 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->car,
1698 printcharfun, escapeflag);
1699 strout ("[default-value] ", -1, -1, printcharfun, 0);
1700 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->cdr,
1701 printcharfun, escapeflag);
1702 PRINTCHAR ('>');
1703 break;
1704
1705 default:
1706 goto badtype;
1707 }
1708 break;
1709 #endif /* standalone */
1710
1711 default:
1712 badtype:
1713 {
1714 /* We're in trouble if this happens!
1715 Probably should just abort () */
1716 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun, 0);
1717 if (MISCP (obj))
1718 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
1719 else if (VECTORLIKEP (obj))
1720 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
1721 else
1722 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
1723 strout (buf, -1, -1, printcharfun, 0);
1724 strout (" Save your buffers immediately and please report this bug>",
1725 -1, -1, printcharfun, 0);
1726 }
1727 }
1728
1729 print_depth--;
1730 }
1731 \f
1732 #ifdef USE_TEXT_PROPERTIES
1733
1734 /* Print a description of INTERVAL using PRINTCHARFUN.
1735 This is part of printing a string that has text properties. */
1736
1737 void
1738 print_interval (interval, printcharfun)
1739 INTERVAL interval;
1740 Lisp_Object printcharfun;
1741 {
1742 PRINTCHAR (' ');
1743 print (make_number (interval->position), printcharfun, 1);
1744 PRINTCHAR (' ');
1745 print (make_number (interval->position + LENGTH (interval)),
1746 printcharfun, 1);
1747 PRINTCHAR (' ');
1748 print (interval->plist, printcharfun, 1);
1749 }
1750
1751 #endif /* USE_TEXT_PROPERTIES */
1752 \f
1753 void
1754 syms_of_print ()
1755 {
1756 DEFVAR_LISP ("standard-output", &Vstandard_output,
1757 "Output stream `print' uses by default for outputting a character.\n\
1758 This may be any function of one argument.\n\
1759 It may also be a buffer (output is inserted before point)\n\
1760 or a marker (output is inserted and the marker is advanced)\n\
1761 or the symbol t (output appears in the echo area).");
1762 Vstandard_output = Qt;
1763 Qstandard_output = intern ("standard-output");
1764 staticpro (&Qstandard_output);
1765
1766 #ifdef LISP_FLOAT_TYPE
1767 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
1768 "The format descriptor string used to print floats.\n\
1769 This is a %-spec like those accepted by `printf' in C,\n\
1770 but with some restrictions. It must start with the two characters `%.'.\n\
1771 After that comes an integer precision specification,\n\
1772 and then a letter which controls the format.\n\
1773 The letters allowed are `e', `f' and `g'.\n\
1774 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\
1775 Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\
1776 Use `g' to choose the shorter of those two formats for the number at hand.\n\
1777 The precision in any of these cases is the number of digits following\n\
1778 the decimal point. With `f', a precision of 0 means to omit the\n\
1779 decimal point. 0 is not allowed with `e' or `g'.\n\n\
1780 A value of nil means to use the shortest notation\n\
1781 that represents the number without losing information.");
1782 Vfloat_output_format = Qnil;
1783 Qfloat_output_format = intern ("float-output-format");
1784 staticpro (&Qfloat_output_format);
1785 #endif /* LISP_FLOAT_TYPE */
1786
1787 DEFVAR_LISP ("print-length", &Vprint_length,
1788 "Maximum length of list to print before abbreviating.\n\
1789 A value of nil means no limit.");
1790 Vprint_length = Qnil;
1791
1792 DEFVAR_LISP ("print-level", &Vprint_level,
1793 "Maximum depth of list nesting to print before abbreviating.\n\
1794 A value of nil means no limit.");
1795 Vprint_level = Qnil;
1796
1797 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
1798 "Non-nil means print newlines in strings as backslash-n.\n\
1799 Also print formfeeds as backslash-f.");
1800 print_escape_newlines = 0;
1801
1802 DEFVAR_BOOL ("print-quoted", &print_quoted,
1803 "Non-nil means print quoted forms with reader syntax.\n\
1804 I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and, backquoted\n\
1805 forms print in the new syntax.");
1806 print_quoted = 0;
1807
1808 DEFVAR_LISP ("print-gensym", &Vprint_gensym,
1809 "Non-nil means print uninterned symbols so they will read as uninterned.\n\
1810 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.\n\
1811 When the uninterned symbol appears within a larger data structure,\n\
1812 in addition use the #...# and #...= constructs as needed,\n\
1813 so that multiple references to the same symbol are shared once again\n\
1814 when the text is read back.\n\
1815 \n\
1816 If the value of `print-gensym' is a cons cell, then in addition refrain from\n\
1817 clearing `print-gensym-alist' on entry to and exit from printing functions,\n\
1818 so that the use of #...# and #...= can carry over for several separately\n\
1819 printed objects.");
1820 Vprint_gensym = Qnil;
1821
1822 DEFVAR_LISP ("print-gensym-alist", &Vprint_gensym_alist,
1823 "Association list of elements (GENSYM . N) to guide use of #N# and #N=.\n\
1824 In each element, GENSYM is an uninterned symbol that has been associated\n\
1825 with #N= for the specified value of N.");
1826 Vprint_gensym_alist = Qnil;
1827
1828 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
1829 staticpro (&Vprin1_to_string_buffer);
1830
1831 defsubr (&Sprin1);
1832 defsubr (&Sprin1_to_string);
1833 defsubr (&Serror_message_string);
1834 defsubr (&Sprinc);
1835 defsubr (&Sprint);
1836 defsubr (&Sterpri);
1837 defsubr (&Swrite_char);
1838 defsubr (&Sexternal_debugging_output);
1839
1840 Qexternal_debugging_output = intern ("external-debugging-output");
1841 staticpro (&Qexternal_debugging_output);
1842
1843 Qprint_escape_newlines = intern ("print-escape-newlines");
1844 staticpro (&Qprint_escape_newlines);
1845
1846 #ifndef standalone
1847 defsubr (&Swith_output_to_temp_buffer);
1848 #endif /* not standalone */
1849 }