329
|
1 /* Lisp object printing and output streams.
|
21250
|
2 Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 1998
|
|
3 Free Software Foundation, Inc.
|
329
|
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
|
621
|
9 the Free Software Foundation; either version 2, or (at your option)
|
329
|
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
|
14186
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
329
|
21
|
|
22
|
4696
|
23 #include <config.h>
|
329
|
24 #include <stdio.h>
|
|
25 #include "lisp.h"
|
|
26
|
|
27 #ifndef standalone
|
|
28 #include "buffer.h"
|
17040
|
29 #include "charset.h"
|
766
|
30 #include "frame.h"
|
329
|
31 #include "window.h"
|
|
32 #include "process.h"
|
|
33 #include "dispextern.h"
|
|
34 #include "termchar.h"
|
11341
|
35 #include "keyboard.h"
|
329
|
36 #endif /* not standalone */
|
|
37
|
1967
|
38 #ifdef USE_TEXT_PROPERTIES
|
|
39 #include "intervals.h"
|
|
40 #endif
|
|
41
|
329
|
42 Lisp_Object Vstandard_output, Qstandard_output;
|
|
43
|
15908
|
44 /* These are used to print like we read. */
|
|
45 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
|
|
46
|
329
|
47 #ifdef LISP_FLOAT_TYPE
|
|
48 Lisp_Object Vfloat_output_format, Qfloat_output_format;
|
20121
|
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
|
20200
|
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
|
20121
|
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
|
329
|
97 #endif /* LISP_FLOAT_TYPE */
|
|
98
|
|
99 /* Avoid actual stack overflow in print. */
|
|
100 int print_depth;
|
|
101
|
379
|
102 /* Detect most circularities to print finite output. */
|
|
103 #define PRINT_CIRCLE 200
|
|
104 Lisp_Object being_printed[PRINT_CIRCLE];
|
|
105
|
15801
|
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;
|
20591
|
112 /* Chars stored in print_buffer. */
|
15801
|
113 int print_buffer_pos;
|
20591
|
114 /* Bytes stored in print_buffer. */
|
|
115 int print_buffer_pos_byte;
|
15801
|
116
|
329
|
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
|
15908
|
133 /* Nonzero means print (quote foo) forms as 'foo, etc. */
|
|
134
|
|
135 int print_quoted;
|
|
136
|
18961
|
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. */
|
16140
|
140
|
18961
|
141 Lisp_Object Vprint_gensym;
|
16140
|
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
|
18961
|
147 Lisp_Object Vprint_gensym_alist;
|
15908
|
148
|
10418
|
149 /* Nonzero means print newline to stdout before next minibuffer message.
|
329
|
150 Defined in xdisp.c */
|
|
151
|
|
152 extern int noninteractive_need_newline;
|
10418
|
153
|
19001
|
154 extern int minibuffer_auto_raise;
|
|
155
|
329
|
156 #ifdef MAX_PRINT_CHARS
|
|
157 static int print_chars;
|
|
158 static int max_print;
|
|
159 #endif /* MAX_PRINT_CHARS */
|
1967
|
160
|
|
161 void print_interval ();
|
329
|
162
|
|
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
|
3591
|
215 /* Low level output routines for characters and strings */
|
329
|
216
|
|
217 /* Lisp functions to do output using a stream
|
16140
|
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.
|
329
|
223 */
|
|
224
|
16140
|
225 #define PRINTDECLARE \
|
|
226 struct buffer *old = current_buffer; \
|
|
227 int old_point = -1, start_point; \
|
20549
|
228 int old_point_byte, start_point_byte; \
|
16512
|
229 int specpdl_count = specpdl_ptr - specpdl; \
|
|
230 int free_print_buffer = 0; \
|
16140
|
231 Lisp_Object original
|
|
232
|
2193
|
233 #define PRINTPREPARE \
|
|
234 original = printcharfun; \
|
|
235 if (NILP (printcharfun)) printcharfun = Qt; \
|
9117
f69e6cf74874
(PRINTPREPARE, PRINTFINISH, float_to_string, print): Use type test macros.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
236 if (BUFFERP (printcharfun)) \
|
16512
|
237 { \
|
|
238 if (XBUFFER (printcharfun) != current_buffer) \
|
2193
|
239 Fset_buffer (printcharfun); \
|
16512
|
240 printcharfun = Qnil; \
|
|
241 } \
|
9117
f69e6cf74874
(PRINTPREPARE, PRINTFINISH, float_to_string, print): Use type test macros.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
242 if (MARKERP (printcharfun)) \
|
16512
|
243 { \
|
|
244 if (!(XMARKER (original)->buffer)) \
|
2193
|
245 error ("Marker does not point anywhere"); \
|
|
246 if (XMARKER (original)->buffer != current_buffer) \
|
|
247 set_buffer_internal (XMARKER (original)->buffer); \
|
16039
|
248 old_point = PT; \
|
20549
|
249 old_point_byte = PT_BYTE; \
|
|
250 SET_PT_BOTH (marker_position (printcharfun), \
|
|
251 marker_byte_position (printcharfun)); \
|
16039
|
252 start_point = PT; \
|
20549
|
253 start_point_byte = PT_BYTE; \
|
16512
|
254 printcharfun = Qnil; \
|
|
255 } \
|
15801
|
256 if (NILP (printcharfun)) \
|
|
257 { \
|
20591
|
258 Lisp_Object string; \
|
16512
|
259 if (print_buffer != 0) \
|
20591
|
260 { \
|
21250
|
261 string = make_string_from_bytes (print_buffer, \
|
|
262 print_buffer_pos, \
|
|
263 print_buffer_pos_byte); \
|
20591
|
264 record_unwind_protect (print_unwind, string); \
|
|
265 } \
|
16512
|
266 else \
|
|
267 { \
|
|
268 print_buffer_size = 1000; \
|
|
269 print_buffer = (char *) xmalloc (print_buffer_size); \
|
16513
|
270 free_print_buffer = 1; \
|
16512
|
271 } \
|
15801
|
272 print_buffer_pos = 0; \
|
20591
|
273 print_buffer_pos_byte = 0; \
|
15801
|
274 } \
|
18961
|
275 if (!CONSP (Vprint_gensym)) \
|
|
276 Vprint_gensym_alist = Qnil
|
329
|
277
|
2193
|
278 #define PRINTFINISH \
|
15801
|
279 if (NILP (printcharfun)) \
|
20591
|
280 insert_1_both (print_buffer, print_buffer_pos, \
|
|
281 print_buffer_pos_byte, 0, 1, 0); \
|
16512
|
282 if (free_print_buffer) \
|
16496
|
283 { \
|
16520
|
284 xfree (print_buffer); \
|
16496
|
285 print_buffer = 0; \
|
|
286 } \
|
16512
|
287 unbind_to (specpdl_count, Qnil); \
|
9117
f69e6cf74874
(PRINTPREPARE, PRINTFINISH, float_to_string, print): Use type test macros.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
288 if (MARKERP (original)) \
|
20549
|
289 set_marker_both (original, Qnil, PT, PT_BYTE); \
|
2193
|
290 if (old_point >= 0) \
|
20549
|
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)); \
|
2193
|
295 if (old != current_buffer) \
|
16140
|
296 set_buffer_internal (old); \
|
18961
|
297 if (!CONSP (Vprint_gensym)) \
|
|
298 Vprint_gensym_alist = Qnil
|
329
|
299
|
|
300 #define PRINTCHAR(ch) printchar (ch, printcharfun)
|
|
301
|
16496
|
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
|
16512
|
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
|
16496
|
318 /* Index of first unused element of FRAME_MESSAGE_BUF (mini_frame). */
|
329
|
319 static int printbufidx;
|
|
320
|
|
321 static void
|
|
322 printchar (ch, fun)
|
17040
|
323 unsigned int ch;
|
329
|
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 {
|
17040
|
335 int len;
|
20303
|
336 unsigned char work[4], *str;
|
17040
|
337
|
329
|
338 QUIT;
|
17040
|
339 len = CHAR_STRING (ch, work, str);
|
20591
|
340 if (print_buffer_pos_byte + len >= print_buffer_size)
|
15801
|
341 print_buffer = (char *) xrealloc (print_buffer,
|
|
342 print_buffer_size *= 2);
|
20591
|
343 bcopy (str, print_buffer + print_buffer_pos_byte, len);
|
|
344 print_buffer_pos += 1;
|
|
345 print_buffer_pos_byte += len;
|
329
|
346 return;
|
|
347 }
|
|
348
|
|
349 if (EQ (fun, Qt))
|
|
350 {
|
6808
|
351 FRAME_PTR mini_frame
|
5487
|
352 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
|
17040
|
353 unsigned char work[4], *str;
|
|
354 int len = CHAR_STRING (ch, work, str);
|
5487
|
355
|
16496
|
356 QUIT;
|
|
357
|
329
|
358 if (noninteractive)
|
|
359 {
|
17040
|
360 while (len--)
|
|
361 putchar (*str), str++;
|
329
|
362 noninteractive_need_newline = 1;
|
|
363 return;
|
|
364 }
|
|
365
|
5487
|
366 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame)
|
329
|
367 || !message_buf_print)
|
|
368 {
|
10568
|
369 message_log_maybe_newline ();
|
5487
|
370 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame);
|
329
|
371 printbufidx = 0;
|
5233
|
372 echo_area_glyphs_length = 0;
|
329
|
373 message_buf_print = 1;
|
19001
|
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 }
|
329
|
385 }
|
|
386
|
20591
|
387 message_dolog (str, len, 0, len > 1);
|
20888
|
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))
|
21499
|
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 }
|
20888
|
407 bcopy (tembuf, FRAME_MESSAGE_BUF (mini_frame), printbufidx);
|
21499
|
408 message_enable_multibyte = 1;
|
20888
|
409 }
|
|
410
|
17040
|
411 if (printbufidx < FRAME_MESSAGE_BUF_SIZE (mini_frame) - len)
|
|
412 bcopy (str, &FRAME_MESSAGE_BUF (mini_frame)[printbufidx], len),
|
|
413 printbufidx += len;
|
5487
|
414 FRAME_MESSAGE_BUF (mini_frame)[printbufidx] = 0;
|
5233
|
415 echo_area_glyphs_length = printbufidx;
|
329
|
416
|
|
417 return;
|
|
418 }
|
|
419 #endif /* not standalone */
|
|
420
|
9317
|
421 XSETFASTINT (ch1, ch);
|
329
|
422 call1 (fun, ch1);
|
|
423 }
|
|
424
|
|
425 static void
|
20591
|
426 strout (ptr, size, size_byte, printcharfun, multibyte)
|
329
|
427 char *ptr;
|
20591
|
428 int size, size_byte;
|
329
|
429 Lisp_Object printcharfun;
|
20591
|
430 int multibyte;
|
329
|
431 {
|
|
432 int i = 0;
|
|
433
|
17040
|
434 if (size < 0)
|
20591
|
435 size_byte = size = strlen (ptr);
|
17040
|
436
|
329
|
437 if (EQ (printcharfun, Qnil))
|
|
438 {
|
20591
|
439 if (print_buffer_pos_byte + size_byte > print_buffer_size)
|
15801
|
440 {
|
20591
|
441 print_buffer_size = print_buffer_size * 2 + size_byte;
|
15801
|
442 print_buffer = (char *) xrealloc (print_buffer,
|
|
443 print_buffer_size);
|
|
444 }
|
20591
|
445 bcopy (ptr, print_buffer + print_buffer_pos_byte, size_byte);
|
15801
|
446 print_buffer_pos += size;
|
20591
|
447 print_buffer_pos_byte += size_byte;
|
15801
|
448
|
329
|
449 #ifdef MAX_PRINT_CHARS
|
|
450 if (max_print)
|
15801
|
451 print_chars += size;
|
329
|
452 #endif /* MAX_PRINT_CHARS */
|
|
453 return;
|
|
454 }
|
|
455 if (EQ (printcharfun, Qt))
|
|
456 {
|
6808
|
457 FRAME_PTR mini_frame
|
5487
|
458 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
|
|
459
|
16496
|
460 QUIT;
|
|
461
|
329
|
462 #ifdef MAX_PRINT_CHARS
|
|
463 if (max_print)
|
17040
|
464 print_chars += size;
|
329
|
465 #endif /* MAX_PRINT_CHARS */
|
|
466
|
|
467 if (noninteractive)
|
|
468 {
|
20591
|
469 fwrite (ptr, 1, size_byte, stdout);
|
329
|
470 noninteractive_need_newline = 1;
|
|
471 return;
|
|
472 }
|
|
473
|
5487
|
474 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame)
|
329
|
475 || !message_buf_print)
|
|
476 {
|
10568
|
477 message_log_maybe_newline ();
|
5487
|
478 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame);
|
329
|
479 printbufidx = 0;
|
5233
|
480 echo_area_glyphs_length = 0;
|
329
|
481 message_buf_print = 1;
|
19001
|
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 }
|
329
|
493 }
|
|
494
|
20591
|
495 message_dolog (ptr, size_byte, 0, multibyte);
|
21499
|
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. */
|
20591
|
521 if (size_byte > FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1)
|
17040
|
522 {
|
20591
|
523 size_byte = FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1;
|
17040
|
524 /* Rewind incomplete multi-byte form. */
|
21499
|
525 while (size_byte && (unsigned char) ptr[size_byte] >= 0xA0)
|
|
526 size_byte--;
|
17040
|
527 }
|
21499
|
528
|
|
529 /* Put that part of the new text in. */
|
20591
|
530 bcopy (ptr, &FRAME_MESSAGE_BUF (mini_frame) [printbufidx], size_byte);
|
|
531 printbufidx += size_byte;
|
21499
|
532 FRAME_MESSAGE_BUF (mini_frame) [printbufidx] = 0;
|
5233
|
533 echo_area_glyphs_length = printbufidx;
|
329
|
534
|
|
535 return;
|
|
536 }
|
|
537
|
17040
|
538 i = 0;
|
20591
|
539 if (size == size_byte)
|
|
540 while (i < size_byte)
|
|
541 {
|
|
542 int ch = ptr[i++];
|
17040
|
543
|
20591
|
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 }
|
329
|
557 }
|
|
558
|
|
559 /* Print the contents of a string STRING using PRINTCHARFUN.
|
13147
|
560 It isn't safe to use strout in many cases,
|
|
561 because printing one char can relocate. */
|
329
|
562
|
20591
|
563 static void
|
329
|
564 print_string (string, printcharfun)
|
|
565 Lisp_Object string;
|
|
566 Lisp_Object printcharfun;
|
|
567 {
|
15801
|
568 if (EQ (printcharfun, Qt) || NILP (printcharfun))
|
|
569 /* strout is safe for output to a frame (echo area) or to print_buffer. */
|
20591
|
570 strout (XSTRING (string)->data,
|
|
571 XSTRING (string)->size,
|
21244
|
572 STRING_BYTES (XSTRING (string)),
|
20591
|
573 printcharfun, STRING_MULTIBYTE (string));
|
329
|
574 else
|
|
575 {
|
20591
|
576 /* Otherwise, string may be relocated by printing one char.
|
|
577 So re-fetch the string address for each character. */
|
329
|
578 int i;
|
|
579 int size = XSTRING (string)->size;
|
21244
|
580 int size_byte = STRING_BYTES (XSTRING (string));
|
329
|
581 struct gcpro gcpro1;
|
|
582 GCPRO1 (string);
|
20591
|
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_LENGTH (XSTRING (string)->data + i,
|
|
593 size_byte - i, len);
|
|
594
|
|
595 PRINTCHAR (ch);
|
|
596 i += len;
|
|
597 }
|
329
|
598 UNGCPRO;
|
|
599 }
|
|
600 }
|
|
601
|
|
602 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0,
|
14084
|
603 "Output character CHARACTER to stream PRINTCHARFUN.\n\
|
7185
|
604 PRINTCHARFUN defaults to the value of `standard-output' (which see).")
|
14084
|
605 (character, printcharfun)
|
|
606 Lisp_Object character, printcharfun;
|
329
|
607 {
|
16140
|
608 PRINTDECLARE;
|
329
|
609
|
520
|
610 if (NILP (printcharfun))
|
329
|
611 printcharfun = Vstandard_output;
|
14084
|
612 CHECK_NUMBER (character, 0);
|
329
|
613 PRINTPREPARE;
|
14084
|
614 PRINTCHAR (XINT (character));
|
329
|
615 PRINTFINISH;
|
14084
|
616 return character;
|
329
|
617 }
|
|
618
|
20591
|
619 /* Used from outside of print.c to print a block of SIZE
|
|
620 single-byte chars at DATA on the default output stream.
|
329
|
621 Do not use this on the contents of a Lisp string. */
|
|
622
|
20303
|
623 void
|
329
|
624 write_string (data, size)
|
|
625 char *data;
|
|
626 int size;
|
|
627 {
|
16140
|
628 PRINTDECLARE;
|
329
|
629 Lisp_Object printcharfun;
|
|
630
|
|
631 printcharfun = Vstandard_output;
|
|
632
|
|
633 PRINTPREPARE;
|
20591
|
634 strout (data, size, size, printcharfun, 0);
|
329
|
635 PRINTFINISH;
|
|
636 }
|
|
637
|
20591
|
638 /* Used from outside of print.c to print a block of SIZE
|
|
639 single-byte chars at DATA on a specified stream PRINTCHARFUN.
|
329
|
640 Do not use this on the contents of a Lisp string. */
|
|
641
|
20303
|
642 void
|
329
|
643 write_string_1 (data, size, printcharfun)
|
|
644 char *data;
|
|
645 int size;
|
|
646 Lisp_Object printcharfun;
|
|
647 {
|
16140
|
648 PRINTDECLARE;
|
329
|
649
|
|
650 PRINTPREPARE;
|
20591
|
651 strout (data, size, size, printcharfun, 0);
|
329
|
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
|
11114
|
667 current_buffer->directory = old->directory;
|
329
|
668 current_buffer->read_only = Qnil;
|
21484
|
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;
|
329
|
675 Ferase_buffer ();
|
|
676
|
9276
ae62e12feac5
(temp_output_buffer_setup): Use new accessor macros instead of calling XSET
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
677 XSETBUFFER (buf, current_buffer);
|
329
|
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;
|
21514
|
686 Lisp_Object (*function) P_ ((Lisp_Object));
|
329
|
687 Lisp_Object args;
|
|
688 {
|
|
689 int count = specpdl_ptr - specpdl;
|
|
690 Lisp_Object buf, val;
|
8315
|
691 struct gcpro gcpro1;
|
329
|
692
|
8315
|
693 GCPRO1 (args);
|
329
|
694 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
695 temp_output_buffer_setup (bufname);
|
|
696 buf = Vstandard_output;
|
8315
|
697 UNGCPRO;
|
329
|
698
|
|
699 val = (*function) (args);
|
|
700
|
8315
|
701 GCPRO1 (val);
|
329
|
702 temp_output_buffer_show (buf);
|
8315
|
703 UNGCPRO;
|
329
|
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\
|
3337
|
716 If variable `temp-buffer-show-function' is non-nil, call it at the end\n\
|
329
|
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
|
|
742 static void print ();
|
|
743
|
|
744 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0,
|
7185
|
745 "Output a newline to stream PRINTCHARFUN.\n\
|
|
746 If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used.")
|
329
|
747 (printcharfun)
|
|
748 Lisp_Object printcharfun;
|
|
749 {
|
16140
|
750 PRINTDECLARE;
|
329
|
751
|
520
|
752 if (NILP (printcharfun))
|
329
|
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\
|
7185
|
764 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
|
14084
|
765 (object, printcharfun)
|
|
766 Lisp_Object object, printcharfun;
|
329
|
767 {
|
16140
|
768 PRINTDECLARE;
|
329
|
769
|
|
770 #ifdef MAX_PRINT_CHARS
|
|
771 max_print = 0;
|
|
772 #endif /* MAX_PRINT_CHARS */
|
520
|
773 if (NILP (printcharfun))
|
329
|
774 printcharfun = Vstandard_output;
|
|
775 PRINTPREPARE;
|
|
776 print_depth = 0;
|
14084
|
777 print (object, printcharfun, 1);
|
329
|
778 PRINTFINISH;
|
14084
|
779 return object;
|
329
|
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.")
|
14084
|
790 (object, noescape)
|
|
791 Lisp_Object object, noescape;
|
329
|
792 {
|
16140
|
793 PRINTDECLARE;
|
|
794 Lisp_Object printcharfun;
|
15270
|
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);
|
329
|
803
|
|
804 printcharfun = Vprin1_to_string_buffer;
|
|
805 PRINTPREPARE;
|
|
806 print_depth = 0;
|
14084
|
807 print (object, printcharfun, NILP (noescape));
|
329
|
808 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */
|
|
809 PRINTFINISH;
|
|
810 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
|
14084
|
811 object = Fbuffer_string ();
|
329
|
812
|
|
813 Ferase_buffer ();
|
|
814 set_buffer_internal (old);
|
15270
|
815
|
|
816 Vdeactivate_mark = tem;
|
329
|
817 UNGCPRO;
|
|
818
|
14084
|
819 return object;
|
329
|
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\
|
7185
|
826 Output stream is PRINTCHARFUN, or value of standard-output (which see).")
|
14084
|
827 (object, printcharfun)
|
|
828 Lisp_Object object, printcharfun;
|
329
|
829 {
|
16140
|
830 PRINTDECLARE;
|
329
|
831
|
520
|
832 if (NILP (printcharfun))
|
329
|
833 printcharfun = Vstandard_output;
|
|
834 PRINTPREPARE;
|
|
835 print_depth = 0;
|
14084
|
836 print (object, printcharfun, 0);
|
329
|
837 PRINTFINISH;
|
14084
|
838 return object;
|
329
|
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\
|
7185
|
845 Output stream is PRINTCHARFUN, or value of `standard-output' (which see).")
|
14084
|
846 (object, printcharfun)
|
|
847 Lisp_Object object, printcharfun;
|
329
|
848 {
|
16140
|
849 PRINTDECLARE;
|
329
|
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 */
|
520
|
856 if (NILP (printcharfun))
|
329
|
857 printcharfun = Vstandard_output;
|
14084
|
858 GCPRO1 (object);
|
329
|
859 PRINTPREPARE;
|
|
860 print_depth = 0;
|
|
861 PRINTCHAR ('\n');
|
14084
|
862 print (object, printcharfun, 1);
|
329
|
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;
|
14084
|
870 return object;
|
329
|
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
|
621
|
877 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
|
|
878 "Write CHARACTER to stderr.\n\
|
329
|
879 You can call print while debugging emacs, and pass it this function\n\
|
|
880 to make it write to the debugging output.\n")
|
621
|
881 (character)
|
|
882 Lisp_Object character;
|
329
|
883 {
|
|
884 CHECK_NUMBER (character, 0);
|
|
885 putc (XINT (character), stderr);
|
19882
|
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
|
329
|
895 return character;
|
|
896 }
|
6533
|
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);
|
13456
|
905 fprintf (stderr, "\r\n");
|
6533
|
906 }
|
329
|
907
|
13776
|
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
|
18342
|
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
|
20303
|
927 print_error_message (obj, Vprin1_to_string_buffer);
|
13776
|
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
|
20303
|
943 void
|
13776
|
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
|
329
|
993 #ifdef LISP_FLOAT_TYPE
|
|
994
|
|
995 /*
|
1759
|
996 * The buffer should be at least as large as the max string size of the
|
14036
|
997 * largest float, printed in the biggest notation. This is undoubtedly
|
329
|
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 */
|
1759
|
1008
|
|
1009 void
|
|
1010 float_to_string (buf, data)
|
1991
|
1011 unsigned char *buf;
|
329
|
1012 double data;
|
|
1013 {
|
4140
|
1014 unsigned char *cp;
|
4224
|
1015 int width;
|
329
|
1016
|
20816
|
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
|
520
|
1037 if (NILP (Vfloat_output_format)
|
9117
f69e6cf74874
(PRINTPREPARE, PRINTFINISH, float_to_string, print): Use type test macros.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1038 || !STRINGP (Vfloat_output_format))
|
329
|
1039 lose:
|
4224
|
1040 {
|
20121
|
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);
|
4224
|
1056 }
|
329
|
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;
|
4140
|
1070
|
|
1071 /* Check the width specification. */
|
4224
|
1072 width = -1;
|
4140
|
1073 if ('0' <= *cp && *cp <= '9')
|
11798
|
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 }
|
329
|
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 }
|
1759
|
1094
|
4140
|
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
|
4224
|
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)
|
1764
|
1100 {
|
4140
|
1101 for (cp = buf; *cp; cp++)
|
|
1102 if ((*cp < '0' || *cp > '9') && *cp != '-')
|
|
1103 break;
|
1764
|
1104
|
4140
|
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 }
|
1759
|
1117 }
|
329
|
1118 }
|
|
1119 #endif /* LISP_FLOAT_TYPE */
|
|
1120
|
|
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
|
379
|
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. */
|
9117
f69e6cf74874
(PRINTPREPARE, PRINTFINISH, float_to_string, print): Use type test macros.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1134 if (CONSP (obj) || VECTORP (obj) || COMPILEDP (obj))
|
379
|
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);
|
20591
|
1141 strout (buf, -1, -1, printcharfun, 0);
|
379
|
1142 return;
|
|
1143 }
|
|
1144 }
|
|
1145 #endif
|
|
1146
|
|
1147 being_printed[print_depth] = obj;
|
329
|
1148 print_depth++;
|
|
1149
|
379
|
1150 if (print_depth > PRINT_CIRCLE)
|
329
|
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
|
10293
|
1160 switch (XGCTYPE (obj))
|
329
|
1161 {
|
10293
|
1162 case Lisp_Int:
|
11697
|
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 ();
|
20591
|
1169 strout (buf, -1, -1, printcharfun, 0);
|
10293
|
1170 break;
|
|
1171
|
10001
|
1172 #ifdef LISP_FLOAT_TYPE
|
10293
|
1173 case Lisp_Float:
|
|
1174 {
|
|
1175 char pigbuf[350]; /* see comments in float_to_string */
|
329
|
1176
|
10293
|
1177 float_to_string (pigbuf, XFLOAT(obj)->data);
|
20591
|
1178 strout (pigbuf, -1, -1, printcharfun, 0);
|
10293
|
1179 }
|
|
1180 break;
|
10001
|
1181 #endif
|
10293
|
1182
|
|
1183 case Lisp_String:
|
329
|
1184 if (!escapeflag)
|
|
1185 print_string (obj, printcharfun);
|
|
1186 else
|
|
1187 {
|
20591
|
1188 register int i, i_byte;
|
329
|
1189 register unsigned char c;
|
|
1190 struct gcpro gcpro1;
|
20591
|
1191 int size_byte;
|
21373
|
1192 /* 1 means we must ensure that the next character we output
|
|
1193 cannot be taken as part of a hex character escape. */
|
|
1194 int need_nonhex = 0;
|
329
|
1195
|
1967
|
1196 GCPRO1 (obj);
|
|
1197
|
|
1198 #ifdef USE_TEXT_PROPERTIES
|
|
1199 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
|
|
1200 {
|
|
1201 PRINTCHAR ('#');
|
|
1202 PRINTCHAR ('(');
|
|
1203 }
|
|
1204 #endif
|
329
|
1205
|
|
1206 PRINTCHAR ('\"');
|
21244
|
1207 size_byte = STRING_BYTES (XSTRING (obj));
|
20591
|
1208
|
|
1209 for (i = 0, i_byte = 0; i_byte < size_byte;)
|
329
|
1210 {
|
20549
|
1211 /* Here, we must convert each multi-byte form to the
|
|
1212 corresponding character code before handing it to PRINTCHAR. */
|
|
1213 int len;
|
20591
|
1214 int c;
|
|
1215
|
|
1216 if (STRING_MULTIBYTE (obj))
|
|
1217 FETCH_STRING_CHAR_ADVANCE (c, obj, i, i_byte);
|
|
1218 else
|
|
1219 c = XSTRING (obj)->data[i_byte++];
|
|
1220
|
329
|
1221 QUIT;
|
20549
|
1222
|
329
|
1223 if (c == '\n' && print_escape_newlines)
|
|
1224 {
|
|
1225 PRINTCHAR ('\\');
|
|
1226 PRINTCHAR ('n');
|
|
1227 }
|
5852
|
1228 else if (c == '\f' && print_escape_newlines)
|
|
1229 {
|
|
1230 PRINTCHAR ('\\');
|
|
1231 PRINTCHAR ('f');
|
|
1232 }
|
20670
|
1233 else if ((! SINGLE_BYTE_CHAR_P (c)
|
|
1234 && NILP (current_buffer->enable_multibyte_characters)))
|
20591
|
1235 {
|
|
1236 /* When multibyte is disabled,
|
|
1237 print multibyte string chars using hex escapes. */
|
|
1238 unsigned char outbuf[50];
|
|
1239 sprintf (outbuf, "\\x%x", c);
|
|
1240 strout (outbuf, -1, -1, printcharfun, 0);
|
21373
|
1241 need_nonhex = 1;
|
20591
|
1242 }
|
20670
|
1243 else if (SINGLE_BYTE_CHAR_P (c)
|
|
1244 && ! ASCII_BYTE_P (c)
|
|
1245 && ! NILP (current_buffer->enable_multibyte_characters))
|
|
1246 {
|
|
1247 /* When multibyte is enabled,
|
|
1248 print single-byte non-ASCII string chars
|
|
1249 using octal escapes. */
|
|
1250 unsigned char outbuf[5];
|
|
1251 sprintf (outbuf, "\\%03o", c);
|
|
1252 strout (outbuf, -1, -1, printcharfun, 0);
|
|
1253 }
|
329
|
1254 else
|
|
1255 {
|
21373
|
1256 /* If we just had a hex escape, and this character
|
|
1257 could be taken as part of it,
|
|
1258 output `\ ' to prevent that. */
|
21480
|
1259 if (need_nonhex)
|
|
1260 {
|
|
1261 need_nonhex = 0;
|
|
1262 if ((c >= 'a' && c <= 'f')
|
21373
|
1263 || (c >= 'A' && c <= 'F')
|
21480
|
1264 || (c >= '0' && c <= '9'))
|
|
1265 strout ("\\ ", -1, -1, printcharfun, 0);
|
|
1266 }
|
21373
|
1267
|
329
|
1268 if (c == '\"' || c == '\\')
|
|
1269 PRINTCHAR ('\\');
|
|
1270 PRINTCHAR (c);
|
|
1271 }
|
|
1272 }
|
|
1273 PRINTCHAR ('\"');
|
1967
|
1274
|
|
1275 #ifdef USE_TEXT_PROPERTIES
|
|
1276 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals))
|
|
1277 {
|
|
1278 traverse_intervals (XSTRING (obj)->intervals,
|
|
1279 0, 0, print_interval, printcharfun);
|
|
1280 PRINTCHAR (')');
|
|
1281 }
|
|
1282 #endif
|
|
1283
|
329
|
1284 UNGCPRO;
|
|
1285 }
|
10293
|
1286 break;
|
|
1287
|
|
1288 case Lisp_Symbol:
|
|
1289 {
|
|
1290 register int confusing;
|
|
1291 register unsigned char *p = XSYMBOL (obj)->name->data;
|
21244
|
1292 register unsigned char *end = p + STRING_BYTES (XSYMBOL (obj)->name);
|
20862
|
1293 register int c;
|
20591
|
1294 int i, i_byte, size_byte;
|
|
1295 Lisp_Object name;
|
|
1296
|
|
1297 XSETSTRING (name, XSYMBOL (obj)->name);
|
329
|
1298
|
10293
|
1299 if (p != end && (*p == '-' || *p == '+')) p++;
|
|
1300 if (p == end)
|
|
1301 confusing = 0;
|
17509
|
1302 /* If symbol name begins with a digit, and ends with a digit,
|
|
1303 and contains nothing but digits and `e', it could be treated
|
|
1304 as a number. So set CONFUSING.
|
|
1305
|
|
1306 Symbols that contain periods could also be taken as numbers,
|
|
1307 but periods are always escaped, so we don't have to worry
|
|
1308 about them here. */
|
|
1309 else if (*p >= '0' && *p <= '9'
|
|
1310 && end[-1] >= '0' && end[-1] <= '9')
|
10293
|
1311 {
|
17223
|
1312 while (p != end && ((*p >= '0' && *p <= '9')
|
|
1313 /* Needed for \2e10. */
|
|
1314 || *p == 'e'))
|
10293
|
1315 p++;
|
|
1316 confusing = (end == p);
|
|
1317 }
|
17509
|
1318 else
|
|
1319 confusing = 0;
|
329
|
1320
|
16140
|
1321 /* If we print an uninterned symbol as part of a complex object and
|
|
1322 the flag print-gensym is non-nil, prefix it with #n= to read the
|
|
1323 object back with the #n# reader syntax later if needed. */
|
18961
|
1324 if (! NILP (Vprint_gensym) && NILP (XSYMBOL (obj)->obarray))
|
16140
|
1325 {
|
|
1326 if (print_depth > 1)
|
|
1327 {
|
|
1328 Lisp_Object tem;
|
18961
|
1329 tem = Fassq (obj, Vprint_gensym_alist);
|
16140
|
1330 if (CONSP (tem))
|
|
1331 {
|
|
1332 PRINTCHAR ('#');
|
|
1333 print (XCDR (tem), printcharfun, escapeflag);
|
|
1334 PRINTCHAR ('#');
|
|
1335 break;
|
|
1336 }
|
|
1337 else
|
|
1338 {
|
18961
|
1339 if (CONSP (Vprint_gensym_alist))
|
|
1340 XSETFASTINT (tem, XFASTINT (XCDR (XCAR (Vprint_gensym_alist))) + 1);
|
16140
|
1341 else
|
|
1342 XSETFASTINT (tem, 1);
|
18961
|
1343 Vprint_gensym_alist = Fcons (Fcons (obj, tem), Vprint_gensym_alist);
|
16140
|
1344
|
|
1345 PRINTCHAR ('#');
|
|
1346 print (tem, printcharfun, escapeflag);
|
|
1347 PRINTCHAR ('=');
|
|
1348 }
|
|
1349 }
|
|
1350 PRINTCHAR ('#');
|
|
1351 PRINTCHAR (':');
|
|
1352 }
|
|
1353
|
21244
|
1354 size_byte = STRING_BYTES (XSTRING (name));
|
20591
|
1355
|
|
1356 for (i = 0, i_byte = 0; i_byte < size_byte;)
|
10293
|
1357 {
|
20549
|
1358 /* Here, we must convert each multi-byte form to the
|
|
1359 corresponding character code before handing it to PRINTCHAR. */
|
20591
|
1360
|
|
1361 if (STRING_MULTIBYTE (name))
|
|
1362 FETCH_STRING_CHAR_ADVANCE (c, name, i, i_byte);
|
|
1363 else
|
|
1364 c = XSTRING (name)->data[i_byte++];
|
|
1365
|
10293
|
1366 QUIT;
|
16496
|
1367
|
10293
|
1368 if (escapeflag)
|
|
1369 {
|
16496
|
1370 if (c == '\"' || c == '\\' || c == '\''
|
|
1371 || c == ';' || c == '#' || c == '(' || c == ')'
|
|
1372 || c == ',' || c =='.' || c == '`'
|
|
1373 || c == '[' || c == ']' || c == '?' || c <= 040
|
|
1374 || confusing)
|
10293
|
1375 PRINTCHAR ('\\'), confusing = 0;
|
|
1376 }
|
|
1377 PRINTCHAR (c);
|
|
1378 }
|
|
1379 }
|
|
1380 break;
|
|
1381
|
|
1382 case Lisp_Cons:
|
329
|
1383 /* If deeper than spec'd depth, print placeholder. */
|
9117
f69e6cf74874
(PRINTPREPARE, PRINTFINISH, float_to_string, print): Use type test macros.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1384 if (INTEGERP (Vprint_level)
|
329
|
1385 && print_depth > XINT (Vprint_level))
|
20591
|
1386 strout ("...", -1, -1, printcharfun, 0);
|
15908
|
1387 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
|
|
1388 && (EQ (XCAR (obj), Qquote)))
|
|
1389 {
|
|
1390 PRINTCHAR ('\'');
|
|
1391 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
|
|
1392 }
|
|
1393 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
|
|
1394 && (EQ (XCAR (obj), Qfunction)))
|
|
1395 {
|
|
1396 PRINTCHAR ('#');
|
|
1397 PRINTCHAR ('\'');
|
|
1398 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
|
|
1399 }
|
|
1400 else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj)))
|
|
1401 && ((EQ (XCAR (obj), Qbackquote)
|
|
1402 || EQ (XCAR (obj), Qcomma)
|
|
1403 || EQ (XCAR (obj), Qcomma_at)
|
|
1404 || EQ (XCAR (obj), Qcomma_dot))))
|
|
1405 {
|
|
1406 print (XCAR (obj), printcharfun, 0);
|
|
1407 print (XCAR (XCDR (obj)), printcharfun, escapeflag);
|
|
1408 }
|
10001
|
1409 else
|
329
|
1410 {
|
10001
|
1411 PRINTCHAR ('(');
|
329
|
1412 {
|
10001
|
1413 register int i = 0;
|
21455
|
1414 register int print_length = 0;
|
10001
|
1415
|
|
1416 if (INTEGERP (Vprint_length))
|
21455
|
1417 print_length = XINT (Vprint_length);
|
10001
|
1418 /* Could recognize circularities in cdrs here,
|
|
1419 but that would make printing of long lists quadratic.
|
|
1420 It's not worth doing. */
|
|
1421 while (CONSP (obj))
|
329
|
1422 {
|
10001
|
1423 if (i++)
|
|
1424 PRINTCHAR (' ');
|
21455
|
1425 if (print_length && i > print_length)
|
10001
|
1426 {
|
20591
|
1427 strout ("...", 3, 3, printcharfun, 0);
|
10001
|
1428 break;
|
|
1429 }
|
15908
|
1430 print (XCAR (obj), printcharfun, escapeflag);
|
|
1431 obj = XCDR (obj);
|
329
|
1432 }
|
|
1433 }
|
15908
|
1434 if (!NILP (obj))
|
10001
|
1435 {
|
20591
|
1436 strout (" . ", 3, 3, printcharfun, 0);
|
10001
|
1437 print (obj, printcharfun, escapeflag);
|
|
1438 }
|
|
1439 PRINTCHAR (')');
|
329
|
1440 }
|
10293
|
1441 break;
|
|
1442
|
|
1443 case Lisp_Vectorlike:
|
|
1444 if (PROCESSP (obj))
|
|
1445 {
|
|
1446 if (escapeflag)
|
|
1447 {
|
20591
|
1448 strout ("#<process ", -1, -1, printcharfun, 0);
|
10293
|
1449 print_string (XPROCESS (obj)->name, printcharfun);
|
|
1450 PRINTCHAR ('>');
|
|
1451 }
|
|
1452 else
|
|
1453 print_string (XPROCESS (obj)->name, printcharfun);
|
|
1454 }
|
13147
|
1455 else if (BOOL_VECTOR_P (obj))
|
|
1456 {
|
|
1457 register int i;
|
|
1458 register unsigned char c;
|
|
1459 struct gcpro gcpro1;
|
|
1460 int size_in_chars
|
16893
|
1461 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
|
13147
|
1462
|
|
1463 GCPRO1 (obj);
|
|
1464
|
|
1465 PRINTCHAR ('#');
|
|
1466 PRINTCHAR ('&');
|
|
1467 sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
|
20591
|
1468 strout (buf, -1, -1, printcharfun, 0);
|
13147
|
1469 PRINTCHAR ('\"');
|
15563
|
1470
|
|
1471 /* Don't print more characters than the specified maximum. */
|
|
1472 if (INTEGERP (Vprint_length)
|
|
1473 && XINT (Vprint_length) < size_in_chars)
|
|
1474 size_in_chars = XINT (Vprint_length);
|
|
1475
|
13147
|
1476 for (i = 0; i < size_in_chars; i++)
|
|
1477 {
|
|
1478 QUIT;
|
|
1479 c = XBOOL_VECTOR (obj)->data[i];
|
|
1480 if (c == '\n' && print_escape_newlines)
|
|
1481 {
|
|
1482 PRINTCHAR ('\\');
|
|
1483 PRINTCHAR ('n');
|
|
1484 }
|
|
1485 else if (c == '\f' && print_escape_newlines)
|
|
1486 {
|
|
1487 PRINTCHAR ('\\');
|
|
1488 PRINTCHAR ('f');
|
|
1489 }
|
|
1490 else
|
|
1491 {
|
|
1492 if (c == '\"' || c == '\\')
|
|
1493 PRINTCHAR ('\\');
|
|
1494 PRINTCHAR (c);
|
|
1495 }
|
|
1496 }
|
|
1497 PRINTCHAR ('\"');
|
|
1498
|
|
1499 UNGCPRO;
|
|
1500 }
|
10293
|
1501 else if (SUBRP (obj))
|
|
1502 {
|
20591
|
1503 strout ("#<subr ", -1, -1, printcharfun, 0);
|
|
1504 strout (XSUBR (obj)->symbol_name, -1, -1, printcharfun, 0);
|
10293
|
1505 PRINTCHAR ('>');
|
|
1506 }
|
|
1507 #ifndef standalone
|
|
1508 else if (WINDOWP (obj))
|
|
1509 {
|
20591
|
1510 strout ("#<window ", -1, -1, printcharfun, 0);
|
10293
|
1511 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number));
|
20591
|
1512 strout (buf, -1, -1, printcharfun, 0);
|
10293
|
1513 if (!NILP (XWINDOW (obj)->buffer))
|
|
1514 {
|
20591
|
1515 strout (" on ", -1, -1, printcharfun, 0);
|
10293
|
1516 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun);
|
|
1517 }
|
|
1518 PRINTCHAR ('>');
|
|
1519 }
|
10301
|
1520 else if (BUFFERP (obj))
|
|
1521 {
|
|
1522 if (NILP (XBUFFER (obj)->name))
|
20591
|
1523 strout ("#<killed buffer>", -1, -1, printcharfun, 0);
|
10301
|
1524 else if (escapeflag)
|
|
1525 {
|
20591
|
1526 strout ("#<buffer ", -1, -1, printcharfun, 0);
|
10301
|
1527 print_string (XBUFFER (obj)->name, printcharfun);
|
|
1528 PRINTCHAR ('>');
|
|
1529 }
|
|
1530 else
|
|
1531 print_string (XBUFFER (obj)->name, printcharfun);
|
|
1532 }
|
10293
|
1533 else if (WINDOW_CONFIGURATIONP (obj))
|
|
1534 {
|
20591
|
1535 strout ("#<window-configuration>", -1, -1, printcharfun, 0);
|
10293
|
1536 }
|
|
1537 else if (FRAMEP (obj))
|
|
1538 {
|
|
1539 strout ((FRAME_LIVE_P (XFRAME (obj))
|
|
1540 ? "#<frame " : "#<dead frame "),
|
20591
|
1541 -1, -1, printcharfun, 0);
|
10293
|
1542 print_string (XFRAME (obj)->name, printcharfun);
|
20591
|
1543 sprintf (buf, " 0x%lx\\ ", (unsigned long) (XFRAME (obj)));
|
|
1544 strout (buf, -1, -1, printcharfun, 0);
|
10293
|
1545 PRINTCHAR ('>');
|
|
1546 }
|
|
1547 #endif /* not standalone */
|
|
1548 else
|
|
1549 {
|
|
1550 int size = XVECTOR (obj)->size;
|
|
1551 if (COMPILEDP (obj))
|
|
1552 {
|
|
1553 PRINTCHAR ('#');
|
|
1554 size &= PSEUDOVECTOR_SIZE_MASK;
|
|
1555 }
|
13147
|
1556 if (CHAR_TABLE_P (obj))
|
|
1557 {
|
|
1558 /* We print a char-table as if it were a vector,
|
|
1559 lumping the parent and default slots in with the
|
|
1560 character slots. But we add #^ as a prefix. */
|
|
1561 PRINTCHAR ('#');
|
|
1562 PRINTCHAR ('^');
|
17325
|
1563 if (SUB_CHAR_TABLE_P (obj))
|
|
1564 PRINTCHAR ('^');
|
13147
|
1565 size &= PSEUDOVECTOR_SIZE_MASK;
|
|
1566 }
|
10482
|
1567 if (size & PSEUDOVECTOR_FLAG)
|
|
1568 goto badtype;
|
10293
|
1569
|
|
1570 PRINTCHAR ('[');
|
329
|
1571 {
|
10293
|
1572 register int i;
|
|
1573 register Lisp_Object tem;
|
15563
|
1574
|
|
1575 /* Don't print more elements than the specified maximum. */
|
|
1576 if (INTEGERP (Vprint_length)
|
|
1577 && XINT (Vprint_length) < size)
|
|
1578 size = XINT (Vprint_length);
|
|
1579
|
10293
|
1580 for (i = 0; i < size; i++)
|
|
1581 {
|
|
1582 if (i) PRINTCHAR (' ');
|
|
1583 tem = XVECTOR (obj)->contents[i];
|
|
1584 print (tem, printcharfun, escapeflag);
|
|
1585 }
|
329
|
1586 }
|
10293
|
1587 PRINTCHAR (']');
|
|
1588 }
|
|
1589 break;
|
|
1590
|
329
|
1591 #ifndef standalone
|
10293
|
1592 case Lisp_Misc:
|
11241
|
1593 switch (XMISCTYPE (obj))
|
329
|
1594 {
|
10482
|
1595 case Lisp_Misc_Marker:
|
20591
|
1596 strout ("#<marker ", -1, -1, printcharfun, 0);
|
17040
|
1597 /* Do you think this is necessary? */
|
|
1598 if (XMARKER (obj)->insertion_type != 0)
|
20591
|
1599 strout ("(before-insertion) ", -1, -1, printcharfun, 0);
|
10293
|
1600 if (!(XMARKER (obj)->buffer))
|
20591
|
1601 strout ("in no buffer", -1, -1, printcharfun, 0);
|
10293
|
1602 else
|
|
1603 {
|
|
1604 sprintf (buf, "at %d", marker_position (obj));
|
20591
|
1605 strout (buf, -1, -1, printcharfun, 0);
|
|
1606 strout (" in ", -1, -1, printcharfun, 0);
|
10293
|
1607 print_string (XMARKER (obj)->buffer->name, printcharfun);
|
|
1608 }
|
329
|
1609 PRINTCHAR ('>');
|
10301
|
1610 break;
|
10482
|
1611
|
|
1612 case Lisp_Misc_Overlay:
|
20591
|
1613 strout ("#<overlay ", -1, -1, printcharfun, 0);
|
10293
|
1614 if (!(XMARKER (OVERLAY_START (obj))->buffer))
|
20591
|
1615 strout ("in no buffer", -1, -1, printcharfun, 0);
|
10293
|
1616 else
|
|
1617 {
|
|
1618 sprintf (buf, "from %d to %d in ",
|
|
1619 marker_position (OVERLAY_START (obj)),
|
|
1620 marker_position (OVERLAY_END (obj)));
|
20591
|
1621 strout (buf, -1, -1, printcharfun, 0);
|
10293
|
1622 print_string (XMARKER (OVERLAY_START (obj))->buffer->name,
|
|
1623 printcharfun);
|
|
1624 }
|
|
1625 PRINTCHAR ('>');
|
10301
|
1626 break;
|
10482
|
1627
|
|
1628 /* Remaining cases shouldn't happen in normal usage, but let's print
|
|
1629 them anyway for the benefit of the debugger. */
|
|
1630 case Lisp_Misc_Free:
|
20591
|
1631 strout ("#<misc free cell>", -1, -1, printcharfun, 0);
|
10482
|
1632 break;
|
|
1633
|
|
1634 case Lisp_Misc_Intfwd:
|
|
1635 sprintf (buf, "#<intfwd to %d>", *XINTFWD (obj)->intvar);
|
20591
|
1636 strout (buf, -1, -1, printcharfun, 0);
|
10482
|
1637 break;
|
|
1638
|
|
1639 case Lisp_Misc_Boolfwd:
|
|
1640 sprintf (buf, "#<boolfwd to %s>",
|
|
1641 (*XBOOLFWD (obj)->boolvar ? "t" : "nil"));
|
20591
|
1642 strout (buf, -1, -1, printcharfun, 0);
|
10482
|
1643 break;
|
|
1644
|
|
1645 case Lisp_Misc_Objfwd:
|
20591
|
1646 strout ("#<objfwd to ", -1, -1, printcharfun, 0);
|
10482
|
1647 print (*XOBJFWD (obj)->objvar, printcharfun, escapeflag);
|
|
1648 PRINTCHAR ('>');
|
|
1649 break;
|
|
1650
|
|
1651 case Lisp_Misc_Buffer_Objfwd:
|
20591
|
1652 strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
|
10583
|
1653 print (*(Lisp_Object *)((char *)current_buffer
|
|
1654 + XBUFFER_OBJFWD (obj)->offset),
|
|
1655 printcharfun, escapeflag);
|
|
1656 PRINTCHAR ('>');
|
|
1657 break;
|
|
1658
|
11010
|
1659 case Lisp_Misc_Kboard_Objfwd:
|
20591
|
1660 strout ("#<kboard_objfwd to ", -1, -1, printcharfun, 0);
|
11010
|
1661 print (*(Lisp_Object *)((char *) current_kboard
|
|
1662 + XKBOARD_OBJFWD (obj)->offset),
|
10993
|
1663 printcharfun, escapeflag);
|
10482
|
1664 PRINTCHAR ('>');
|
|
1665 break;
|
|
1666
|
|
1667 case Lisp_Misc_Buffer_Local_Value:
|
20591
|
1668 strout ("#<buffer_local_value ", -1, -1, printcharfun, 0);
|
10482
|
1669 goto do_buffer_local;
|
|
1670 case Lisp_Misc_Some_Buffer_Local_Value:
|
20591
|
1671 strout ("#<some_buffer_local_value ", -1, -1, printcharfun, 0);
|
10482
|
1672 do_buffer_local:
|
20591
|
1673 strout ("[realvalue] ", -1, -1, printcharfun, 0);
|
21142
|
1674 print (XBUFFER_LOCAL_VALUE (obj)->realvalue, printcharfun, escapeflag);
|
|
1675 if (XBUFFER_LOCAL_VALUE (obj)->found_for_buffer)
|
|
1676 strout ("[local in buffer] ", -1, -1, printcharfun, 0);
|
|
1677 else
|
|
1678 strout ("[buffer] ", -1, -1, printcharfun, 0);
|
|
1679 print (XBUFFER_LOCAL_VALUE (obj)->buffer,
|
|
1680 printcharfun, escapeflag);
|
|
1681 if (XBUFFER_LOCAL_VALUE (obj)->check_frame)
|
|
1682 {
|
|
1683 if (XBUFFER_LOCAL_VALUE (obj)->found_for_frame)
|
|
1684 strout ("[local in frame] ", -1, -1, printcharfun, 0);
|
|
1685 else
|
|
1686 strout ("[frame] ", -1, -1, printcharfun, 0);
|
|
1687 print (XBUFFER_LOCAL_VALUE (obj)->frame,
|
|
1688 printcharfun, escapeflag);
|
|
1689 }
|
|
1690 strout ("[alist-elt] ", -1, -1, printcharfun, 0);
|
10482
|
1691 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->car,
|
|
1692 printcharfun, escapeflag);
|
20591
|
1693 strout ("[default-value] ", -1, -1, printcharfun, 0);
|
21142
|
1694 print (XCONS (XBUFFER_LOCAL_VALUE (obj)->cdr)->cdr,
|
10482
|
1695 printcharfun, escapeflag);
|
|
1696 PRINTCHAR ('>');
|
|
1697 break;
|
|
1698
|
|
1699 default:
|
|
1700 goto badtype;
|
329
|
1701 }
|
10482
|
1702 break;
|
329
|
1703 #endif /* standalone */
|
10293
|
1704
|
|
1705 default:
|
10482
|
1706 badtype:
|
10293
|
1707 {
|
|
1708 /* We're in trouble if this happens!
|
|
1709 Probably should just abort () */
|
20591
|
1710 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, -1, printcharfun, 0);
|
10482
|
1711 if (MISCP (obj))
|
11241
|
1712 sprintf (buf, "(MISC 0x%04x)", (int) XMISCTYPE (obj));
|
10482
|
1713 else if (VECTORLIKEP (obj))
|
|
1714 sprintf (buf, "(PVEC 0x%08x)", (int) XVECTOR (obj)->size);
|
|
1715 else
|
|
1716 sprintf (buf, "(0x%02x)", (int) XTYPE (obj));
|
20591
|
1717 strout (buf, -1, -1, printcharfun, 0);
|
10293
|
1718 strout (" Save your buffers immediately and please report this bug>",
|
20591
|
1719 -1, -1, printcharfun, 0);
|
10293
|
1720 }
|
329
|
1721 }
|
|
1722
|
|
1723 print_depth--;
|
|
1724 }
|
|
1725
|
1967
|
1726 #ifdef USE_TEXT_PROPERTIES
|
|
1727
|
|
1728 /* Print a description of INTERVAL using PRINTCHARFUN.
|
|
1729 This is part of printing a string that has text properties. */
|
|
1730
|
|
1731 void
|
|
1732 print_interval (interval, printcharfun)
|
|
1733 INTERVAL interval;
|
|
1734 Lisp_Object printcharfun;
|
|
1735 {
|
4003
|
1736 PRINTCHAR (' ');
|
1967
|
1737 print (make_number (interval->position), printcharfun, 1);
|
|
1738 PRINTCHAR (' ');
|
|
1739 print (make_number (interval->position + LENGTH (interval)),
|
|
1740 printcharfun, 1);
|
|
1741 PRINTCHAR (' ');
|
|
1742 print (interval->plist, printcharfun, 1);
|
|
1743 }
|
|
1744
|
|
1745 #endif /* USE_TEXT_PROPERTIES */
|
|
1746
|
329
|
1747 void
|
|
1748 syms_of_print ()
|
|
1749 {
|
|
1750 DEFVAR_LISP ("standard-output", &Vstandard_output,
|
|
1751 "Output stream `print' uses by default for outputting a character.\n\
|
|
1752 This may be any function of one argument.\n\
|
|
1753 It may also be a buffer (output is inserted before point)\n\
|
|
1754 or a marker (output is inserted and the marker is advanced)\n\
|
13776
|
1755 or the symbol t (output appears in the echo area).");
|
329
|
1756 Vstandard_output = Qt;
|
|
1757 Qstandard_output = intern ("standard-output");
|
|
1758 staticpro (&Qstandard_output);
|
|
1759
|
|
1760 #ifdef LISP_FLOAT_TYPE
|
|
1761 DEFVAR_LISP ("float-output-format", &Vfloat_output_format,
|
687
|
1762 "The format descriptor string used to print floats.\n\
|
329
|
1763 This is a %-spec like those accepted by `printf' in C,\n\
|
|
1764 but with some restrictions. It must start with the two characters `%.'.\n\
|
|
1765 After that comes an integer precision specification,\n\
|
|
1766 and then a letter which controls the format.\n\
|
|
1767 The letters allowed are `e', `f' and `g'.\n\
|
|
1768 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\
|
|
1769 Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\
|
|
1770 Use `g' to choose the shorter of those two formats for the number at hand.\n\
|
|
1771 The precision in any of these cases is the number of digits following\n\
|
|
1772 the decimal point. With `f', a precision of 0 means to omit the\n\
|
4140
|
1773 decimal point. 0 is not allowed with `e' or `g'.\n\n\
|
20121
|
1774 A value of nil means to use the shortest notation\n\
|
|
1775 that represents the number without losing information.");
|
329
|
1776 Vfloat_output_format = Qnil;
|
|
1777 Qfloat_output_format = intern ("float-output-format");
|
|
1778 staticpro (&Qfloat_output_format);
|
|
1779 #endif /* LISP_FLOAT_TYPE */
|
|
1780
|
|
1781 DEFVAR_LISP ("print-length", &Vprint_length,
|
686
|
1782 "Maximum length of list to print before abbreviating.\n\
|
329
|
1783 A value of nil means no limit.");
|
|
1784 Vprint_length = Qnil;
|
|
1785
|
|
1786 DEFVAR_LISP ("print-level", &Vprint_level,
|
686
|
1787 "Maximum depth of list nesting to print before abbreviating.\n\
|
329
|
1788 A value of nil means no limit.");
|
|
1789 Vprint_level = Qnil;
|
|
1790
|
|
1791 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
|
6802
|
1792 "Non-nil means print newlines in strings as backslash-n.\n\
|
5852
|
1793 Also print formfeeds as backslash-f.");
|
329
|
1794 print_escape_newlines = 0;
|
|
1795
|
15908
|
1796 DEFVAR_BOOL ("print-quoted", &print_quoted,
|
|
1797 "Non-nil means print quoted forms with reader syntax.\n\
|
|
1798 I.e., (quote foo) prints as 'foo, (function foo) as #'foo, and, backquoted\n\
|
|
1799 forms print in the new syntax.");
|
|
1800 print_quoted = 0;
|
|
1801
|
18961
|
1802 DEFVAR_LISP ("print-gensym", &Vprint_gensym,
|
16140
|
1803 "Non-nil means print uninterned symbols so they will read as uninterned.\n\
|
20025
|
1804 I.e., the value of (make-symbol \"foobar\") prints as #:foobar.\n\
|
18961
|
1805 When the uninterned symbol appears within a larger data structure,\n\
|
|
1806 in addition use the #...# and #...= constructs as needed,\n\
|
|
1807 so that multiple references to the same symbol are shared once again\n\
|
|
1808 when the text is read back.\n\
|
|
1809 \n\
|
|
1810 If the value of `print-gensym' is a cons cell, then in addition refrain from\n\
|
|
1811 clearing `print-gensym-alist' on entry to and exit from printing functions,\n\
|
|
1812 so that the use of #...# and #...= can carry over for several separately\n\
|
|
1813 printed objects.");
|
|
1814 Vprint_gensym = Qnil;
|
|
1815
|
|
1816 DEFVAR_LISP ("print-gensym-alist", &Vprint_gensym_alist,
|
|
1817 "Association list of elements (GENSYM . N) to guide use of #N# and #N=.\n\
|
|
1818 In each element, GENSYM is an uninterned symbol that has been associated\n\
|
|
1819 with #N= for the specified value of N.");
|
|
1820 Vprint_gensym_alist = Qnil;
|
16140
|
1821
|
329
|
1822 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */
|
|
1823 staticpro (&Vprin1_to_string_buffer);
|
|
1824
|
|
1825 defsubr (&Sprin1);
|
|
1826 defsubr (&Sprin1_to_string);
|
13776
|
1827 defsubr (&Serror_message_string);
|
329
|
1828 defsubr (&Sprinc);
|
|
1829 defsubr (&Sprint);
|
|
1830 defsubr (&Sterpri);
|
|
1831 defsubr (&Swrite_char);
|
|
1832 defsubr (&Sexternal_debugging_output);
|
|
1833
|
|
1834 Qexternal_debugging_output = intern ("external-debugging-output");
|
|
1835 staticpro (&Qexternal_debugging_output);
|
|
1836
|
15908
|
1837 Qprint_escape_newlines = intern ("print-escape-newlines");
|
|
1838 staticpro (&Qprint_escape_newlines);
|
|
1839
|
329
|
1840 #ifndef standalone
|
|
1841 defsubr (&Swith_output_to_temp_buffer);
|
|
1842 #endif /* not standalone */
|
|
1843 }
|