Fix previous change.
[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 printbufidx = FRAME_MESSAGE_BUF_SIZE (mini_frame);
402 bcopy (tembuf, FRAME_MESSAGE_BUF (mini_frame), printbufidx);
403 }
404 message_enable_multibyte
405 = ! NILP (current_buffer->enable_multibyte_characters);
406
407 if (printbufidx < FRAME_MESSAGE_BUF_SIZE (mini_frame) - len)
408 bcopy (str, &FRAME_MESSAGE_BUF (mini_frame)[printbufidx], len),
409 printbufidx += len;
410 FRAME_MESSAGE_BUF (mini_frame)[printbufidx] = 0;
411 echo_area_glyphs_length = printbufidx;
412
413 return;
414 }
415 #endif /* not standalone */
416
417 XSETFASTINT (ch1, ch);
418 call1 (fun, ch1);
419 }
420
421 static void
422 strout (ptr, size, size_byte, printcharfun, multibyte)
423 char *ptr;
424 int size, size_byte;
425 Lisp_Object printcharfun;
426 int multibyte;
427 {
428 int i = 0;
429
430 if (size < 0)
431 size_byte = size = strlen (ptr);
432
433 if (EQ (printcharfun, Qnil))
434 {
435 if (print_buffer_pos_byte + size_byte > print_buffer_size)
436 {
437 print_buffer_size = print_buffer_size * 2 + size_byte;
438 print_buffer = (char *) xrealloc (print_buffer,
439 print_buffer_size);
440 }
441 bcopy (ptr, print_buffer + print_buffer_pos_byte, size_byte);
442 print_buffer_pos += size;
443 print_buffer_pos_byte += size_byte;
444
445 #ifdef MAX_PRINT_CHARS
446 if (max_print)
447 print_chars += size;
448 #endif /* MAX_PRINT_CHARS */
449 return;
450 }
451 if (EQ (printcharfun, Qt))
452 {
453 FRAME_PTR mini_frame
454 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
455
456 QUIT;
457
458 #ifdef MAX_PRINT_CHARS
459 if (max_print)
460 print_chars += size;
461 #endif /* MAX_PRINT_CHARS */
462
463 if (noninteractive)
464 {
465 fwrite (ptr, 1, size_byte, stdout);
466 noninteractive_need_newline = 1;
467 return;
468 }
469
470 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame)
471 || !message_buf_print)
472 {
473 message_log_maybe_newline ();
474 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame);
475 printbufidx = 0;
476 echo_area_glyphs_length = 0;
477 message_buf_print = 1;
478
479 if (minibuffer_auto_raise)
480 {
481 Lisp_Object mini_window;
482
483 /* Get the frame containing the minibuffer
484 that the selected frame is using. */
485 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
486
487 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
488 }
489 }
490
491 message_dolog (ptr, size_byte, 0, multibyte);
492 if (size_byte > FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1)
493 {
494 size_byte = FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1;
495 /* Rewind incomplete multi-byte form. */
496 while (size_byte && (unsigned char) ptr[size] >= 0xA0) size--;
497 }
498 bcopy (ptr, &FRAME_MESSAGE_BUF (mini_frame) [printbufidx], size_byte);
499 printbufidx += size_byte;
500 echo_area_glyphs_length = printbufidx;
501 FRAME_MESSAGE_BUF (mini_frame) [printbufidx] = 0;
502
503 return;
504 }
505
506 i = 0;
507 if (size == size_byte)
508 while (i < size_byte)
509 {
510 int ch = ptr[i++];
511
512 PRINTCHAR (ch);
513 }
514 else
515 while (i < size_byte)
516 {
517 /* Here, we must convert each multi-byte form to the
518 corresponding character code before handing it to PRINTCHAR. */
519 int len;
520 int ch = STRING_CHAR_AND_LENGTH (ptr + i, size_byte - i, len);
521
522 PRINTCHAR (ch);
523 i += len;
524 }
525 }
526
527 /* Print the contents of a string STRING using PRINTCHARFUN.
528 It isn't safe to use strout in many cases,
529 because printing one char can relocate. */
530
531 static void
532 print_string (string, printcharfun)
533 Lisp_Object string;
534 Lisp_Object printcharfun;
535 {
536 if (EQ (printcharfun, Qt) || NILP (printcharfun))
537 /* strout is safe for output to a frame (echo area) or to print_buffer. */
538 strout (XSTRING (string)->data,
539 XSTRING (string)->size,
540 STRING_BYTES (XSTRING (string)),
541 printcharfun, STRING_MULTIBYTE (string));
542 else
543 {
544 /* Otherwise, string may be relocated by printing one char.
545 So re-fetch the string address for each character. */
546 int i;
547 int size = XSTRING (string)->size;
548 int size_byte = STRING_BYTES (XSTRING (string));
549 struct gcpro gcpro1;
550 GCPRO1 (string);
551 if (size == size_byte)
552 for (i = 0; i < size; i++)
553 PRINTCHAR (XSTRING (string)->data[i]);
554 else
555 for (i = 0; i < size_byte; i++)
556 {
557 /* Here, we must convert each multi-byte form to the
558 corresponding character code before handing it to PRINTCHAR. */
559 int len;
560 int ch = STRING_CHAR_AND_LENGTH (XSTRING (string)->data + i,
561 size_byte - i, len);
562
563 PRINTCHAR (ch);
564 i += len;
565 }
566 UNGCPRO;
567 }
568 }
569 \f
570 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
571 "Output character CHARACTER to stream PRINTCHARFUN.\n\
572 PRINTCHARFUN defaults to the value of `standard-output' (which see).")
573 (character, printcharfun)
574 Lisp_Object character, printcharfun;
575 {
576 PRINTDECLARE;
577
578 if (NILP (printcharfun))
579 printcharfun = Vstandard_output;
580 CHECK_NUMBER (character, 0);
581 PRINTPREPARE;
582 PRINTCHAR (XINT (character));
583 PRINTFINISH;
584 return character;
585 }
586
587 /* Used from outside of print.c to print a block of SIZE
588 single-byte chars at DATA on the default output stream.
589 Do not use this on the contents of a Lisp string. */
590
591 void
592 write_string (data, size)
593 char *data;
594 int size;
595 {
596 PRINTDECLARE;
597 Lisp_Object printcharfun;
598
599 printcharfun = Vstandard_output;
600
601 PRINTPREPARE;
602 strout (data, size, size, printcharfun, 0);
603 PRINTFINISH;
604 }
605
606 /* Used from outside of print.c to print a block of SIZE
607 single-byte chars at DATA on a specified stream PRINTCHARFUN.
608 Do not use this on the contents of a Lisp string. */
609
610 void
611 write_string_1 (data, size, printcharfun)
612 char *data;
613 int size;
614 Lisp_Object printcharfun;
615 {
616 PRINTDECLARE;
617
618 PRINTPREPARE;
619 strout (data, size, size, printcharfun, 0);
620 PRINTFINISH;
621 }
622
623
624 #ifndef standalone
625
626 void
627 temp_output_buffer_setup (bufname)
628 char *bufname;
629 {
630 register struct buffer *old = current_buffer;
631 register Lisp_Object buf;
632
633 Fset_buffer (Fget_buffer_create (build_string (bufname)));
634
635 current_buffer->directory = old->directory;
636 current_buffer->read_only = Qnil;
637 Ferase_buffer ();
638
639 XSETBUFFER (buf, current_buffer);
640 specbind (Qstandard_output, buf);
641
642 set_buffer_internal (old);
643 }
644
645 Lisp_Object
646 internal_with_output_to_temp_buffer (bufname, function, args)
647 char *bufname;
648 Lisp_Object (*function) ();
649 Lisp_Object args;
650 {
651 int count = specpdl_ptr - specpdl;
652 Lisp_Object buf, val;
653 struct gcpro gcpro1;
654
655 GCPRO1 (args);
656 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
657 temp_output_buffer_setup (bufname);
658 buf = Vstandard_output;
659 UNGCPRO;
660
661 val = (*function) (args);
662
663 GCPRO1 (val);
664 temp_output_buffer_show (buf);
665 UNGCPRO;
666
667 return unbind_to (count, val);
668 }
669
670 DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer,
671 1, UNEVALLED, 0,
672 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.\n\
673 The buffer is cleared out initially, and marked as unmodified when done.\n\
674 All output done by BODY is inserted in that buffer by default.\n\
675 The buffer is displayed in another window, but not selected.\n\
676 The value of the last form in BODY is returned.\n\
677 If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\n\
678 If variable `temp-buffer-show-function' is non-nil, call it at the end\n\
679 to get the buffer displayed. It gets one argument, the buffer to display.")
680 (args)
681 Lisp_Object args;
682 {
683 struct gcpro gcpro1;
684 Lisp_Object name;
685 int count = specpdl_ptr - specpdl;
686 Lisp_Object buf, val;
687
688 GCPRO1(args);
689 name = Feval (Fcar (args));
690 UNGCPRO;
691
692 CHECK_STRING (name, 0);
693 temp_output_buffer_setup (XSTRING (name)->data);
694 buf = Vstandard_output;
695
696 val = Fprogn (Fcdr (args));
697
698 temp_output_buffer_show (buf);
699
700 return unbind_to (count, val);
701 }
702 #endif /* not standalone */
703 \f
704 static void print ();
705
706 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
707 "Output a newline to stream PRINTCHARFUN.\n\
708 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.")
709 (printcharfun)
710 Lisp_Object printcharfun;
711 {
712 PRINTDECLARE;
713
714 if (NILP (printcharfun))
715 printcharfun = Vstandard_output;
716 PRINTPREPARE;
717 PRINTCHAR ('\n');
718 PRINTFINISH;
719 return Qt;
720 }
721
722 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
723 "Output the printed representation of OBJECT, any Lisp object.\n\
724 Quoting characters are printed when needed to make output that `read'\n\
725 can handle, whenever this is possible.\n\
726 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
727 (object, printcharfun)
728 Lisp_Object object, printcharfun;
729 {
730 PRINTDECLARE;
731
732 #ifdef MAX_PRINT_CHARS
733 max_print = 0;
734 #endif /* MAX_PRINT_CHARS */
735 if (NILP (printcharfun))
736 printcharfun = Vstandard_output;
737 PRINTPREPARE;
738 print_depth = 0;
739 print (object, printcharfun, 1);
740 PRINTFINISH;
741 return object;
742 }
743
744 /* a buffer which is used to hold output being built by prin1-to-string */
745 Lisp_Object Vprin1_to_string_buffer;
746
747 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0,
748 "Return a string containing the printed representation of OBJECT,\n\
749 any Lisp object. Quoting characters are used when needed to make output\n\
750 that `read' can handle, whenever this is possible, unless the optional\n\
751 second argument NOESCAPE is non-nil.")
752 (object, noescape)
753 Lisp_Object object, noescape;
754 {
755 PRINTDECLARE;
756 Lisp_Object printcharfun;
757 struct gcpro gcpro1, gcpro2;
758 Lisp_Object tem;
759
760 /* Save and restore this--we are altering a buffer
761 but we don't want to deactivate the mark just for that.
762 No need for specbind, since errors deactivate the mark. */
763 tem = Vdeactivate_mark;
764 GCPRO2 (object, tem);
765
766 printcharfun = Vprin1_to_string_buffer;
767 PRINTPREPARE;
768 print_depth = 0;
769 print (object, printcharfun, NILP (noescape));
770 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
771 PRINTFINISH;
772 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
773 object = Fbuffer_string ();
774
775 Ferase_buffer ();
776 set_buffer_internal (old);
777
778 Vdeactivate_mark = tem;
779 UNGCPRO;
780
781 return object;
782 }
783
784 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
785 "Output the printed representation of OBJECT, any Lisp object.\n\
786 No quoting characters are used; no delimiters are printed around\n\
787 the contents of strings.\n\
788 Output stream is PRINTCHARFUN, or value of standard-output (which see).")
789 (object, printcharfun)
790 Lisp_Object object, printcharfun;
791 {
792 PRINTDECLARE;
793
794 if (NILP (printcharfun))
795 printcharfun = Vstandard_output;
796 PRINTPREPARE;
797 print_depth = 0;
798 print (object, printcharfun, 0);
799 PRINTFINISH;
800 return object;
801 }
802
803 DEFUN ("print", Fprint, Sprint, 1, 2, 0,
804 "Output the printed representation of OBJECT, with newlines around it.\n\
805 Quoting characters are printed when needed to make output that `read'\n\
806 can handle, whenever this is possible.\n\
807 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
808 (object, printcharfun)
809 Lisp_Object object, printcharfun;
810 {
811 PRINTDECLARE;
812 struct gcpro gcpro1;
813
814 #ifdef MAX_PRINT_CHARS
815 print_chars = 0;
816 max_print = MAX_PRINT_CHARS;
817 #endif /* MAX_PRINT_CHARS */
818 if (NILP (printcharfun))
819 printcharfun = Vstandard_output;
820 GCPRO1 (object);
821 PRINTPREPARE;
822 print_depth = 0;
823 PRINTCHAR ('\n');
824 print (object, printcharfun, 1);
825 PRINTCHAR ('\n');
826 PRINTFINISH;
827 #ifdef MAX_PRINT_CHARS
828 max_print = 0;
829 print_chars = 0;
830 #endif /* MAX_PRINT_CHARS */
831 UNGCPRO;
832 return object;
833 }
834
835 /* The subroutine object for external-debugging-output is kept here
836 for the convenience of the debugger. */
837 Lisp_Object Qexternal_debugging_output;
838
839 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
840 "Write CHARACTER to stderr.\n\
841 You can call print while debugging emacs, and pass it this function\n\
842 to make it write to the debugging output.\n")
843 (character)
844 Lisp_Object character;
845 {
846 CHECK_NUMBER (character, 0);
847 putc (XINT (character), stderr);
848
849 #ifdef WINDOWSNT
850 /* Send the output to a debugger (nothing happens if there isn't one). */
851 {
852 char buf[2] = {(char) XINT (character), '\0'};
853 OutputDebugString (buf);
854 }
855 #endif
856
857 return character;
858 }
859
860 /* This is the interface for debugging printing. */
861
862 void
863 debug_print (arg)
864 Lisp_Object arg;
865 {
866 Fprin1 (arg, Qexternal_debugging_output);
867 fprintf (stderr, "\r\n");
868 }
869 \f
870 DEFUN ("error-message-string", Ferror_message_string, Serror_message_string,
871 1, 1, 0,
872 "Convert an error value (ERROR-SYMBOL . DATA) to an error message.")
873 (obj)
874 Lisp_Object obj;
875 {
876 struct buffer *old = current_buffer;
877 Lisp_Object original, printcharfun, value;
878 struct gcpro gcpro1;
879
880 /* If OBJ is (error STRING), just return STRING.
881 That is not only faster, it also avoids the need to allocate
882 space here when the error is due to memory full. */
883 if (CONSP (obj) && EQ (XCONS (obj)->car, Qerror)
884 && CONSP (XCONS (obj)->cdr)
885 && STRINGP (XCONS (XCONS (obj)->cdr)->car)
886 && NILP (XCONS (XCONS (obj)->cdr)->cdr))
887 return XCONS (XCONS (obj)->cdr)->car;
888
889 print_error_message (obj, Vprin1_to_string_buffer);
890
891 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
892 value = Fbuffer_string ();
893
894 GCPRO1 (value);
895 Ferase_buffer ();
896 set_buffer_internal (old);
897 UNGCPRO;
898
899 return value;
900 }
901
902 /* Print an error message for the error DATA
903 onto Lisp output stream STREAM (suitable for the print functions). */
904
905 void
906 print_error_message (data, stream)
907 Lisp_Object data, stream;
908 {
909 Lisp_Object errname, errmsg, file_error, tail;
910 struct gcpro gcpro1;
911 int i;
912
913 errname = Fcar (data);
914
915 if (EQ (errname, Qerror))
916 {
917 data = Fcdr (data);
918 if (!CONSP (data)) data = Qnil;
919 errmsg = Fcar (data);
920 file_error = Qnil;
921 }
922 else
923 {
924 errmsg = Fget (errname, Qerror_message);
925 file_error = Fmemq (Qfile_error,
926 Fget (errname, Qerror_conditions));
927 }
928
929 /* Print an error message including the data items. */
930
931 tail = Fcdr_safe (data);
932 GCPRO1 (tail);
933
934 /* For file-error, make error message by concatenating
935 all the data items. They are all strings. */
936 if (!NILP (file_error) && !NILP (tail))
937 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr;
938
939 if (STRINGP (errmsg))
940 Fprinc (errmsg, stream);
941 else
942 write_string_1 ("peculiar error", -1, stream);
943
944 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
945 {
946 write_string_1 (i ? ", " : ": ", 2, stream);
947 if (!NILP (file_error))
948 Fprinc (Fcar (tail), stream);
949 else
950 Fprin1 (Fcar (tail), stream);
951 }
952 UNGCPRO;
953 }
954 \f
955 #ifdef LISP_FLOAT_TYPE
956
957 /*
958 * The buffer should be at least as large as the max string size of the
959 * largest float, printed in the biggest notation. This is undoubtedly
960 * 20d float_output_format, with the negative of the C-constant "HUGE"
961 * from <math.h>.
962 *
963 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes.
964 *
965 * I assume that IEEE-754 format numbers can take 329 bytes for the worst
966 * case of -1e307 in 20d float_output_format. What is one to do (short of
967 * re-writing _doprnt to be more sane)?
968 * -wsr
969 */
970
971 void
972 float_to_string (buf, data)
973 unsigned char *buf;
974 double data;
975 {
976 unsigned char *cp;
977 int width;
978
979 /* Check for plus infinity in a way that won't lose
980 if there is no plus infinity. */
981 if (data == data / 2 && data > 1.0)
982 {
983 strcpy (buf, "1.0e+INF");
984 return;
985 }
986 /* Likewise for minus infinity. */
987 if (data == data / 2 && data < -1.0)
988 {
989 strcpy (buf, "-1.0e+INF");
990 return;
991 }
992 /* Check for NaN in a way that won't fail if there are no NaNs. */
993 if (! (data * 0.0 >= 0.0))
994 {
995 strcpy (buf, "0.0e+NaN");
996 return;
997 }
998
999 if (NILP (Vfloat_output_format)
1000 || !STRINGP (Vfloat_output_format))
1001 lose:
1002 {
1003 /* Generate the fewest number of digits that represent the
1004 floating point value without losing information.
1005 The following method is simple but a bit slow.
1006 For ideas about speeding things up, please see:
1007
1008 Guy L Steele Jr & Jon L White, How to print floating-point numbers
1009 accurately. SIGPLAN notices 25, 6 (June 1990), 112-126.
1010
1011 Robert G Burger & R Kent Dybvig, Printing floating point numbers
1012 quickly and accurately, SIGPLAN notices 31, 5 (May 1996), 108-116. */
1013
1014 width = fabs (data) < DBL_MIN ? 1 : DBL_DIG;
1015 do
1016 sprintf (buf, "%.*g", width, data);
1017 while (width++ < DOUBLE_DIGITS_BOUND && atof (buf) != data);
1018 }
1019 else /* oink oink */
1020 {
1021 /* Check that the spec we have is fully valid.
1022 This means not only valid for printf,
1023 but meant for floats, and reasonable. */
1024 cp = XSTRING (Vfloat_output_format)->data;
1025
1026 if (cp[0] != '%')
1027 goto lose;
1028 if (cp[1] != '.')
1029 goto lose;
1030
1031 cp += 2;
1032
1033 /* Check the width specification. */
1034 width = -1;
1035 if ('0' <= *cp && *cp <= '9')
1036 {
1037 width = 0;
1038 do
1039 width = (width * 10) + (*cp++ - '0');
1040 while (*cp >= '0' && *cp <= '9');
1041
1042 /* A precision of zero is valid only for %f. */
1043 if (width > DBL_DIG
1044 || (width == 0 && *cp != 'f'))
1045 goto lose;
1046 }
1047
1048 if (*cp != 'e' && *cp != 'f' && *cp != 'g')
1049 goto lose;
1050
1051 if (cp[1] != 0)
1052 goto lose;
1053
1054 sprintf (buf, XSTRING (Vfloat_output_format)->data, data);
1055 }
1056
1057 /* Make sure there is a decimal point with digit after, or an
1058 exponent, so that the value is readable as a float. But don't do
1059 this with "%.0f"; it's valid for that not to produce a decimal
1060 point. Note that width can be 0 only for %.0f. */
1061 if (width != 0)
1062 {
1063 for (cp = buf; *cp; cp++)
1064 if ((*cp < '0' || *cp > '9') && *cp != '-')
1065 break;
1066
1067 if (*cp == '.' && cp[1] == 0)
1068 {
1069 cp[1] = '0';
1070 cp[2] = 0;
1071 }
1072
1073 if (*cp == 0)
1074 {
1075 *cp++ = '.';
1076 *cp++ = '0';
1077 *cp++ = 0;
1078 }
1079 }
1080 }
1081 #endif /* LISP_FLOAT_TYPE */
1082 \f
1083 static void
1084 print (obj, printcharfun, escapeflag)
1085 Lisp_Object obj;
1086 register Lisp_Object printcharfun;
1087 int escapeflag;
1088 {
1089 char buf[30];
1090
1091 QUIT;
1092
1093 #if 1 /* I'm not sure this is really worth doing. */
1094 /* Detect circularities and truncate them.
1095 No need to offer any alternative--this is better than an error. */
1096 if (CONSP (obj) || VECTORP (obj) || COMPILEDP (obj))
1097 {
1098 int i;
1099 for (i = 0; i < print_depth; i++)
1100 if (EQ (obj, being_printed[i]))
1101 {
1102 sprintf (buf, "#%d", i);
1103 strout (buf, -1, -1, printcharfun, 0);
1104 return;
1105 }
1106 }
1107 #endif
1108
1109 being_printed[print_depth] = obj;
1110 print_depth++;
1111
1112 if (print_depth > PRINT_CIRCLE)
1113 error ("Apparently circular structure being printed");
1114 #ifdef MAX_PRINT_CHARS
1115 if (max_print && print_chars > max_print)
1116 {
1117 PRINTCHAR ('\n');
1118 print_chars = 0;
1119 }
1120 #endif /* MAX_PRINT_CHARS */
1121
1122 switch (XGCTYPE (obj))
1123 {
1124 case Lisp_Int:
1125 if (sizeof (int) == sizeof (EMACS_INT))
1126 sprintf (buf, "%d", XINT (obj));
1127 else if (sizeof (long) == sizeof (EMACS_INT))
1128 sprintf (buf, "%ld", XINT (obj));
1129 else
1130 abort ();
1131 strout (buf, -1, -1, printcharfun, 0);
1132 break;
1133
1134 #ifdef LISP_FLOAT_TYPE
1135 case Lisp_Float:
1136 {
1137 char pigbuf[350]; /* see comments in float_to_string */
1138
1139 float_to_string (pigbuf, XFLOAT(obj)->data);
1140 strout (pigbuf, -1, -1, printcharfun, 0);
1141 }
1142 break;
1143 #endif
1144
1145 case Lisp_String:
1146 if (!escapeflag)
1147 print_string (obj, printcharfun);
1148 else
1149 {
1150 register int i, i_byte;
1151 register unsigned char c;
1152 struct gcpro gcpro1;
1153 int size_byte;
1154
1155 GCPRO1 (obj);
1156
1157 #ifdef USE_TEXT_PROPERTIES
1158 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1159 {
1160 PRINTCHAR ('#');
1161 PRINTCHAR ('(');
1162 }
1163 #endif
1164
1165 PRINTCHAR ('\"');
1166 size_byte = STRING_BYTES (XSTRING (obj));
1167
1168 for (i = 0, i_byte = 0; i_byte < size_byte;)
1169 {
1170 /* Here, we must convert each multi-byte form to the
1171 corresponding character code before handing it to PRINTCHAR. */
1172 int len;
1173 int c;
1174
1175 if (STRING_MULTIBYTE (obj))
1176 FETCH_STRING_CHAR_ADVANCE (c, obj, i, i_byte);
1177 else
1178 c = XSTRING (obj)->data[i_byte++];
1179
1180 QUIT;
1181
1182 if (c == '\n' && print_escape_newlines)
1183 {
1184 PRINTCHAR ('\\');
1185 PRINTCHAR ('n');
1186 }
1187 else if (c == '\f' && print_escape_newlines)
1188 {
1189 PRINTCHAR ('\\');
1190 PRINTCHAR ('f');
1191 }
1192 else if ((! SINGLE_BYTE_CHAR_P (c)
1193 && NILP (current_buffer->enable_multibyte_characters)))
1194 {
1195 /* When multibyte is disabled,
1196 print multibyte string chars using hex escapes. */
1197 unsigned char outbuf[50];
1198 sprintf (outbuf, "\\x%x", c);
1199 strout (outbuf, -1, -1, printcharfun, 0);
1200 }
1201 else if (SINGLE_BYTE_CHAR_P (c)
1202 && ! ASCII_BYTE_P (c)
1203 && ! NILP (current_buffer->enable_multibyte_characters))
1204 {
1205 /* When multibyte is enabled,
1206 print single-byte non-ASCII string chars
1207 using octal escapes. */
1208 unsigned char outbuf[5];
1209 sprintf (outbuf, "\\%03o", c);
1210 strout (outbuf, -1, -1, printcharfun, 0);
1211 }
1212 else
1213 {
1214 if (c == '\"' || c == '\\')
1215 PRINTCHAR ('\\');
1216 PRINTCHAR (c);
1217 }
1218 }
1219 PRINTCHAR ('\"');
1220
1221 #ifdef USE_TEXT_PROPERTIES
1222 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
1223 {
1224 traverse_intervals (XSTRING (obj)->intervals,
1225 0, 0, print_interval, printcharfun);
1226 PRINTCHAR (')');
1227 }
1228 #endif
1229
1230 UNGCPRO;
1231 }
1232 break;
1233
1234 case Lisp_Symbol:
1235 {
1236 register int confusing;
1237 register unsigned char *p = XSYMBOL (obj)->name->data;
1238 register unsigned char *end = p + STRING_BYTES (XSYMBOL (obj)->name);
1239 register int c;
1240 int i, i_byte, size_byte;
1241 Lisp_Object name;
1242
1243 XSETSTRING (name, XSYMBOL (obj)->name);
1244
1245 if (p != end && (*p == '-' || *p == '+')) p++;
1246 if (p == end)
1247 confusing = 0;
1248 /* If symbol name begins with a digit, and ends with a digit,
1249 and contains nothing but digits and `e', it could be treated
1250 as a number. So set CONFUSING.
1251
1252 Symbols that contain periods could also be taken as numbers,
1253 but periods are always escaped, so we don't have to worry
1254 about them here. */
1255 else if (*p >= '0' && *p <= '9'
1256 && end[-1] >= '0' && end[-1] <= '9')
1257 {
1258 while (p != end && ((*p >= '0' && *p <= '9')
1259 /* Needed for \2e10. */
1260 || *p == 'e'))
1261 p++;
1262 confusing = (end == p);
1263 }
1264 else
1265 confusing = 0;
1266
1267 /* If we print an uninterned symbol as part of a complex object and
1268 the flag print-gensym is non-nil, prefix it with #n= to read the
1269 object back with the #n# reader syntax later if needed. */
1270 if (! NILP (Vprint_gensym) && NILP (XSYMBOL (obj)->obarray))
1271 {
1272 if (print_depth > 1)
1273 {
1274 Lisp_Object tem;
1275 tem = Fassq (obj, Vprint_gensym_alist);
1276 if (CONSP (tem))
1277 {
1278 PRINTCHAR ('#');
1279 print (XCDR (tem), printcharfun, escapeflag);
1280 PRINTCHAR ('#');
1281 break;
1282 }
1283 else
1284 {
1285 if (CONSP (Vprint_gensym_alist))
1286 XSETFASTINT (tem, XFASTINT (XCDR (XCAR (Vprint_gensym_alist))) + 1);
1287 else
1288 XSETFASTINT (tem, 1);
1289 Vprint_gensym_alist = Fcons (Fcons (obj, tem), Vprint_gensym_alist);
1290
1291 PRINTCHAR ('#');
1292 print (tem, printcharfun, escapeflag);
1293 PRINTCHAR ('=');
1294 }
1295 }
1296 PRINTCHAR ('#');
1297 PRINTCHAR (':');
1298 }
1299
1300 size_byte = STRING_BYTES (XSTRING (name));
1301
1302 for (i = 0, i_byte = 0; i_byte < size_byte;)
1303 {
1304 /* Here, we must convert each multi-byte form to the
1305 corresponding character code before handing it to PRINTCHAR. */
1306
1307 if (STRING_MULTIBYTE (name))
1308 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
1309 else
1310 c = XSTRING (name)->data[i_byte++];
1311
1312 QUIT;
1313
1314 if (escapeflag)
1315 {
1316 if (c == '\"' || c == '\\' || c == '\''
1317 || c == ';' || c == '#' || c == '(' || c == ')'
1318 || c == ',' || c =='.' || c == '`'
1319 || c == '[' || c == ']' || c == '?' || c <= 040
1320 || confusing)
1321 PRINTCHAR ('\\'), confusing = 0;
1322 }
1323 PRINTCHAR (c);
1324 }
1325 }
1326 break;
1327
1328 case Lisp_Cons:
1329 /* If deeper than spec'd depth, print placeholder. */
1330 if (INTEGERP (Vprint_level)
1331 && print_depth > XINT (Vprint_level))
1332 strout ("...", -1, -1, printcharfun, 0);
1333 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1334 && (EQ (XCAR (obj), Qquote)))
1335 {
1336 PRINTCHAR ('\'');
1337 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1338 }
1339 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1340 && (EQ (XCAR (obj), Qfunction)))
1341 {
1342 PRINTCHAR ('#');
1343 PRINTCHAR ('\'');
1344 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1345 }
1346 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
1347 && ((EQ (XCAR (obj), Qbackquote)
1348 || EQ (XCAR (obj), Qcomma)
1349 || EQ (XCAR (obj), Qcomma_at)
1350 || EQ (XCAR (obj), Qcomma_dot))))
1351 {
1352 print (XCAR (obj), printcharfun, 0);
1353 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
1354 }
1355 else
1356 {
1357 PRINTCHAR ('(');
1358 {
1359 register int i = 0;
1360 register int max = 0;
1361
1362 if (INTEGERP (Vprint_length))
1363 max = XINT (Vprint_length);
1364 /* Could recognize circularities in cdrs here,
1365 but that would make printing of long lists quadratic.
1366 It's not worth doing. */
1367 while (CONSP (obj))
1368 {
1369 if (i++)
1370 PRINTCHAR (' ');
1371 if (max && i > max)
1372 {
1373 strout ("...", 3, 3, printcharfun, 0);
1374 break;
1375 }
1376 print (XCAR (obj), printcharfun, escapeflag);
1377 obj = XCDR (obj);
1378 }
1379 }
1380 if (!NILP (obj))
1381 {
1382 strout (" . ", 3, 3, printcharfun, 0);
1383 print (obj, printcharfun, escapeflag);
1384 }
1385 PRINTCHAR (')');
1386 }
1387 break;
1388
1389 case Lisp_Vectorlike:
1390 if (PROCESSP (obj))
1391 {
1392 if (escapeflag)
1393 {
1394 strout ("#<process ", -1, -1, printcharfun, 0);
1395 print_string (XPROCESS (obj)->name, printcharfun);
1396 PRINTCHAR ('>');
1397 }
1398 else
1399 print_string (XPROCESS (obj)->name, printcharfun);
1400 }
1401 else if (BOOL_VECTOR_P (obj))
1402 {
1403 register int i;
1404 register unsigned char c;
1405 struct gcpro gcpro1;
1406 int size_in_chars
1407 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
1408
1409 GCPRO1 (obj);
1410
1411 PRINTCHAR ('#');
1412 PRINTCHAR ('&');
1413 sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
1414 strout (buf, -1, -1, printcharfun, 0);
1415 PRINTCHAR ('\"');
1416
1417 /* Don't print more characters than the specified maximum. */
1418 if (INTEGERP (Vprint_length)
1419 && XINT (Vprint_length) < size_in_chars)
1420 size_in_chars = XINT (Vprint_length);
1421
1422 for (i = 0; i < size_in_chars; i++)
1423 {
1424 QUIT;
1425 c = XBOOL_VECTOR (obj)->data[i];
1426 if (c == '\n' && print_escape_newlines)
1427 {
1428 PRINTCHAR ('\\');
1429 PRINTCHAR ('n');
1430 }
1431 else if (c == '\f' && print_escape_newlines)
1432 {
1433 PRINTCHAR ('\\');
1434 PRINTCHAR ('f');
1435 }
1436 else
1437 {
1438 if (c == '\"' || c == '\\')
1439 PRINTCHAR ('\\');
1440 PRINTCHAR (c);
1441 }
1442 }
1443 PRINTCHAR ('\"');
1444
1445 UNGCPRO;
1446 }
1447 else if (SUBRP (obj))
1448 {
1449 strout ("#<subr ", -1, -1, printcharfun, 0);
1450 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun, 0);
1451 PRINTCHAR ('>');
1452 }
1453 #ifndef standalone
1454 else if (WINDOWP (obj))
1455 {
1456 strout ("#<window ", -1, -1, printcharfun, 0);
1457 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number));
1458 strout (buf, -1, -1, printcharfun, 0);
1459 if (!NILP (XWINDOW (obj)->buffer))
1460 {
1461 strout (" on ", -1, -1, printcharfun, 0);
1462 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
1463 }
1464 PRINTCHAR ('>');
1465 }
1466 else if (BUFFERP (obj))
1467 {
1468 if (NILP (XBUFFER (obj)->name))
1469 strout ("#<killed buffer>", -1, -1, printcharfun, 0);
1470 else if (escapeflag)
1471 {
1472 strout ("#<buffer ", -1, -1, printcharfun, 0);
1473 print_string (XBUFFER (obj)->name, printcharfun);
1474 PRINTCHAR ('>');
1475 }
1476 else
1477 print_string (XBUFFER (obj)->name, printcharfun);
1478 }
1479 else if (WINDOW_CONFIGURATIONP (obj))
1480 {
1481 strout ("#<window-configuration>", -1, -1, printcharfun, 0);
1482 }
1483 else if (FRAMEP (obj))
1484 {
1485 strout ((FRAME_LIVE_P (XFRAME (obj))
1486 ? "#<frame " : "#<dead frame "),
1487 -1, -1, printcharfun, 0);
1488 print_string (XFRAME (obj)->name, printcharfun);
1489 sprintf (buf, " 0x%lx\\ ", (unsigned long) (XFRAME (obj)));
1490 strout (buf, -1, -1, printcharfun, 0);
1491 PRINTCHAR ('>');
1492 }
1493 #endif /* not standalone */
1494 else
1495 {
1496 int size = XVECTOR (obj)->size;
1497 if (COMPILEDP (obj))
1498 {
1499 PRINTCHAR ('#');
1500 size &= PSEUDOVECTOR_SIZE_MASK;
1501 }
1502 if (CHAR_TABLE_P (obj))
1503 {
1504 /* We print a char-table as if it were a vector,
1505 lumping the parent and default slots in with the
1506 character slots. But we add #^ as a prefix. */
1507 PRINTCHAR ('#');
1508 PRINTCHAR ('^');
1509 if (SUB_CHAR_TABLE_P (obj))
1510 PRINTCHAR ('^');
1511 size &= PSEUDOVECTOR_SIZE_MASK;
1512 }
1513 if (size & PSEUDOVECTOR_FLAG)
1514 goto badtype;
1515
1516 PRINTCHAR ('[');
1517 {
1518 register int i;
1519 register Lisp_Object tem;
1520
1521 /* Don't print more elements than the specified maximum. */
1522 if (INTEGERP (Vprint_length)
1523 && XINT (Vprint_length) < size)
1524 size = XINT (Vprint_length);
1525
1526 for (i = 0; i < size; i++)
1527 {
1528 if (i) PRINTCHAR (' ');
1529 tem = XVECTOR (obj)->contents[i];
1530 print (tem, printcharfun, escapeflag);
1531 }
1532 }
1533 PRINTCHAR (']');
1534 }
1535 break;
1536
1537 #ifndef standalone
1538 case Lisp_Misc:
1539 switch (XMISCTYPE (obj))
1540 {
1541 case Lisp_Misc_Marker:
1542 strout ("#<marker ", -1, -1, printcharfun, 0);
1543 /* Do you think this is necessary? */
1544 if (XMARKER (obj)->insertion_type != 0)
1545 strout ("(before-insertion) ", -1, -1, printcharfun, 0);
1546 if (!(XMARKER (obj)->buffer))
1547 strout ("in no buffer", -1, -1, printcharfun, 0);
1548 else
1549 {
1550 sprintf (buf, "at %d", marker_position (obj));
1551 strout (buf, -1, -1, printcharfun, 0);
1552 strout (" in ", -1, -1, printcharfun, 0);
1553 print_string (XMARKER (obj)->buffer->name, printcharfun);
1554 }
1555 PRINTCHAR ('>');
1556 break;
1557
1558 case Lisp_Misc_Overlay:
1559 strout ("#<overlay ", -1, -1, printcharfun, 0);
1560 if (!(XMARKER (OVERLAY_START (obj))->buffer))
1561 strout ("in no buffer", -1, -1, printcharfun, 0);
1562 else
1563 {
1564 sprintf (buf, "from %d to %d in ",
1565 marker_position (OVERLAY_START (obj)),
1566 marker_position (OVERLAY_END (obj)));
1567 strout (buf, -1, -1, printcharfun, 0);
1568 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
1569 printcharfun);
1570 }
1571 PRINTCHAR ('>');
1572 break;
1573
1574 /* Remaining cases shouldn't happen in normal usage, but let's print
1575 them anyway for the benefit of the debugger. */
1576 case Lisp_Misc_Free:
1577 strout ("#<misc free cell>", -1, -1, printcharfun, 0);
1578 break;
1579
1580 case Lisp_Misc_Intfwd:
1581 sprintf (buf, "#<intfwd to %d>", *XINTFWD (obj)->intvar);
1582 strout (buf, -1, -1, printcharfun, 0);
1583 break;
1584
1585 case Lisp_Misc_Boolfwd:
1586 sprintf (buf, "#<boolfwd to %s>",
1587 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
1588 strout (buf, -1, -1, printcharfun, 0);
1589 break;
1590
1591 case Lisp_Misc_Objfwd:
1592 strout ("#<objfwd to ", -1, -1, printcharfun, 0);
1593 print (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
1594 PRINTCHAR ('>');
1595 break;
1596
1597 case Lisp_Misc_Buffer_Objfwd:
1598 strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
1599 print (*(Lisp_Object *)((char *)current_buffer
1600 + XBUFFER_OBJFWD (obj)->offset),
1601 printcharfun, escapeflag);
1602 PRINTCHAR ('>');
1603 break;
1604
1605 case Lisp_Misc_Kboard_Objfwd:
1606 strout ("#<kboard_objfwd to ", -1, -1, printcharfun, 0);
1607 print (*(Lisp_Object *)((char *) current_kboard
1608 + XKBOARD_OBJFWD (obj)->offset),
1609 printcharfun, escapeflag);
1610 PRINTCHAR ('>');
1611 break;
1612
1613 case Lisp_Misc_Buffer_Local_Value:
1614 strout ("#<buffer_local_value ", -1, -1, printcharfun, 0);
1615 goto do_buffer_local;
1616 case Lisp_Misc_Some_Buffer_Local_Value:
1617 strout ("#<some_buffer_local_value ", -1, -1, printcharfun, 0);
1618 do_buffer_local:
1619 strout ("[realvalue] ", -1, -1, printcharfun, 0);
1620 print (XBUFFER_LOCAL_VALUE (obj)->realvalue, printcharfun, escapeflag);
1621 if (XBUFFER_LOCAL_VALUE (obj)->found_for_buffer)
1622 strout ("[local in buffer] ", -1, -1, printcharfun, 0);
1623 else
1624 strout ("[buffer] ", -1, -1, printcharfun, 0);
1625 print (XBUFFER_LOCAL_VALUE (obj)->buffer,
1626 printcharfun, escapeflag);
1627 if (XBUFFER_LOCAL_VALUE (obj)->check_frame)
1628 {
1629 if (XBUFFER_LOCAL_VALUE (obj)->found_for_frame)
1630 strout ("[local in frame] ", -1, -1, printcharfun, 0);
1631 else
1632 strout ("[frame] ", -1, -1, printcharfun, 0);
1633 print (XBUFFER_LOCAL_VALUE (obj)->frame,
1634 printcharfun, escapeflag);
1635 }
1636 strout ("[alist-elt] ", -1, -1, printcharfun, 0);
1637 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->car,
1638 printcharfun, escapeflag);
1639 strout ("[default-value] ", -1, -1, printcharfun, 0);
1640 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->cdr,
1641 printcharfun, escapeflag);
1642 PRINTCHAR ('>');
1643 break;
1644
1645 default:
1646 goto badtype;
1647 }
1648 break;
1649 #endif /* standalone */
1650
1651 default:
1652 badtype:
1653 {
1654 /* We're in trouble if this happens!
1655 Probably should just abort () */
1656 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun, 0);
1657 if (MISCP (obj))
1658 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
1659 else if (VECTORLIKEP (obj))
1660 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
1661 else
1662 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
1663 strout (buf, -1, -1, printcharfun, 0);
1664 strout (" Save your buffers immediately and please report this bug>",
1665 -1, -1, printcharfun, 0);
1666 }
1667 }
1668
1669 print_depth--;
1670 }
1671 \f
1672 #ifdef USE_TEXT_PROPERTIES
1673
1674 /* Print a description of INTERVAL using PRINTCHARFUN.
1675 This is part of printing a string that has text properties. */
1676
1677 void
1678 print_interval (interval, printcharfun)
1679 INTERVAL interval;
1680 Lisp_Object printcharfun;
1681 {
1682 PRINTCHAR (' ');
1683 print (make_number (interval->position), printcharfun, 1);
1684 PRINTCHAR (' ');
1685 print (make_number (interval->position + LENGTH (interval)),
1686 printcharfun, 1);
1687 PRINTCHAR (' ');
1688 print (interval->plist, printcharfun, 1);
1689 }
1690
1691 #endif /* USE_TEXT_PROPERTIES */
1692 \f
1693 void
1694 syms_of_print ()
1695 {
1696 DEFVAR_LISP ("standard-output", &Vstandard_output,
1697 "Output stream `print' uses by default for outputting a character.\n\
1698 This may be any function of one argument.\n\
1699 It may also be a buffer (output is inserted before point)\n\
1700 or a marker (output is inserted and the marker is advanced)\n\
1701 or the symbol t (output appears in the echo area).");
1702 Vstandard_output = Qt;
1703 Qstandard_output = intern ("standard-output");
1704 staticpro (&Qstandard_output);
1705
1706 #ifdef LISP_FLOAT_TYPE
1707 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
1708 "The format descriptor string used to print floats.\n\
1709 This is a %-spec like those accepted by `printf' in C,\n\
1710 but with some restrictions. It must start with the two characters `%.'.\n\
1711 After that comes an integer precision specification,\n\
1712 and then a letter which controls the format.\n\
1713 The letters allowed are `e', `f' and `g'.\n\
1714 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\
1715 Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\
1716 Use `g' to choose the shorter of those two formats for the number at hand.\n\
1717 The precision in any of these cases is the number of digits following\n\
1718 the decimal point. With `f', a precision of 0 means to omit the\n\
1719 decimal point. 0 is not allowed with `e' or `g'.\n\n\
1720 A value of nil means to use the shortest notation\n\
1721 that represents the number without losing information.");
1722 Vfloat_output_format = Qnil;
1723 Qfloat_output_format = intern ("float-output-format");
1724 staticpro (&Qfloat_output_format);
1725 #endif /* LISP_FLOAT_TYPE */
1726
1727 DEFVAR_LISP ("print-length", &Vprint_length,
1728 "Maximum length of list to print before abbreviating.\n\
1729 A value of nil means no limit.");
1730 Vprint_length = Qnil;
1731
1732 DEFVAR_LISP ("print-level", &Vprint_level,
1733 "Maximum depth of list nesting to print before abbreviating.\n\
1734 A value of nil means no limit.");
1735 Vprint_level = Qnil;
1736
1737 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
1738 "Non-nil means print newlines in strings as backslash-n.\n\
1739 Also print formfeeds as backslash-f.");
1740 print_escape_newlines = 0;
1741
1742 DEFVAR_BOOL ("print-quoted", &print_quoted,
1743 "Non-nil means print quoted forms with reader syntax.\n\
1744 I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and, backquoted\n\
1745 forms print in the new syntax.");
1746 print_quoted = 0;
1747
1748 DEFVAR_LISP ("print-gensym", &Vprint_gensym,
1749 "Non-nil means print uninterned symbols so they will read as uninterned.\n\
1750 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.\n\
1751 When the uninterned symbol appears within a larger data structure,\n\
1752 in addition use the #...# and #...= constructs as needed,\n\
1753 so that multiple references to the same symbol are shared once again\n\
1754 when the text is read back.\n\
1755 \n\
1756 If the value of `print-gensym' is a cons cell, then in addition refrain from\n\
1757 clearing `print-gensym-alist' on entry to and exit from printing functions,\n\
1758 so that the use of #...# and #...= can carry over for several separately\n\
1759 printed objects.");
1760 Vprint_gensym = Qnil;
1761
1762 DEFVAR_LISP ("print-gensym-alist", &Vprint_gensym_alist,
1763 "Association list of elements (GENSYM . N) to guide use of #N# and #N=.\n\
1764 In each element, GENSYM is an uninterned symbol that has been associated\n\
1765 with #N= for the specified value of N.");
1766 Vprint_gensym_alist = Qnil;
1767
1768 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
1769 staticpro (&Vprin1_to_string_buffer);
1770
1771 defsubr (&Sprin1);
1772 defsubr (&Sprin1_to_string);
1773 defsubr (&Serror_message_string);
1774 defsubr (&Sprinc);
1775 defsubr (&Sprint);
1776 defsubr (&Sterpri);
1777 defsubr (&Swrite_char);
1778 defsubr (&Sexternal_debugging_output);
1779
1780 Qexternal_debugging_output = intern ("external-debugging-output");
1781 staticpro (&Qexternal_debugging_output);
1782
1783 Qprint_escape_newlines = intern ("print-escape-newlines");
1784 staticpro (&Qprint_escape_newlines);
1785
1786 #ifndef standalone
1787 defsubr (&Swith_output_to_temp_buffer);
1788 #endif /* not standalone */
1789 }