Mercurial > emacs
annotate src/print.c @ 6778:a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 09 Apr 1994 21:43:19 +0000 |
parents | 49f896769be4 |
children | 7d69da13c140 |
rev | line source |
---|---|
329 | 1 /* Lisp object printing and output streams. |
5852
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
2 Copyright (C) 1985, 1986, 1988, 1993, 1994 Free Software Foundation, Inc. |
329 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
621 | 8 the Free Software Foundation; either version 2, or (at your option) |
329 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4224
diff
changeset
|
21 #include <config.h> |
329 | 22 #include <stdio.h> |
23 #undef NULL | |
24 #include "lisp.h" | |
25 | |
26 #ifndef standalone | |
27 #include "buffer.h" | |
766 | 28 #include "frame.h" |
329 | 29 #include "window.h" |
30 #include "process.h" | |
31 #include "dispextern.h" | |
32 #include "termchar.h" | |
33 #endif /* not standalone */ | |
34 | |
1967 | 35 #ifdef USE_TEXT_PROPERTIES |
36 #include "intervals.h" | |
37 #endif | |
38 | |
329 | 39 Lisp_Object Vstandard_output, Qstandard_output; |
40 | |
41 #ifdef LISP_FLOAT_TYPE | |
42 Lisp_Object Vfloat_output_format, Qfloat_output_format; | |
43 #endif /* LISP_FLOAT_TYPE */ | |
44 | |
45 /* Avoid actual stack overflow in print. */ | |
46 int print_depth; | |
47 | |
379
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
48 /* Detect most circularities to print finite output. */ |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
49 #define PRINT_CIRCLE 200 |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
50 Lisp_Object being_printed[PRINT_CIRCLE]; |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
51 |
329 | 52 /* Maximum length of list to print in full; noninteger means |
53 effectively infinity */ | |
54 | |
55 Lisp_Object Vprint_length; | |
56 | |
57 /* Maximum depth of list to print in full; noninteger means | |
58 effectively infinity. */ | |
59 | |
60 Lisp_Object Vprint_level; | |
61 | |
62 /* Nonzero means print newlines in strings as \n. */ | |
63 | |
64 int print_escape_newlines; | |
65 | |
66 Lisp_Object Qprint_escape_newlines; | |
67 | |
68 /* Nonzero means print newline before next minibuffer message. | |
69 Defined in xdisp.c */ | |
70 | |
71 extern int noninteractive_need_newline; | |
72 #ifdef MAX_PRINT_CHARS | |
73 static int print_chars; | |
74 static int max_print; | |
75 #endif /* MAX_PRINT_CHARS */ | |
1967 | 76 |
77 void print_interval (); | |
329 | 78 |
79 #if 0 | |
80 /* Convert between chars and GLYPHs */ | |
81 | |
82 int | |
83 glyphlen (glyphs) | |
84 register GLYPH *glyphs; | |
85 { | |
86 register int i = 0; | |
87 | |
88 while (glyphs[i]) | |
89 i++; | |
90 return i; | |
91 } | |
92 | |
93 void | |
94 str_to_glyph_cpy (str, glyphs) | |
95 char *str; | |
96 GLYPH *glyphs; | |
97 { | |
98 register GLYPH *gp = glyphs; | |
99 register char *cp = str; | |
100 | |
101 while (*cp) | |
102 *gp++ = *cp++; | |
103 } | |
104 | |
105 void | |
106 str_to_glyph_ncpy (str, glyphs, n) | |
107 char *str; | |
108 GLYPH *glyphs; | |
109 register int n; | |
110 { | |
111 register GLYPH *gp = glyphs; | |
112 register char *cp = str; | |
113 | |
114 while (n-- > 0) | |
115 *gp++ = *cp++; | |
116 } | |
117 | |
118 void | |
119 glyph_to_str_cpy (glyphs, str) | |
120 GLYPH *glyphs; | |
121 char *str; | |
122 { | |
123 register GLYPH *gp = glyphs; | |
124 register char *cp = str; | |
125 | |
126 while (*gp) | |
127 *str++ = *gp++ & 0377; | |
128 } | |
129 #endif | |
130 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3377
diff
changeset
|
131 /* Low level output routines for characters and strings */ |
329 | 132 |
133 /* Lisp functions to do output using a stream | |
134 must have the stream in a variable called printcharfun | |
135 and must start with PRINTPREPARE and end with PRINTFINISH. | |
136 Use PRINTCHAR to output one character, | |
137 or call strout to output a block of characters. | |
138 Also, each one must have the declarations | |
139 struct buffer *old = current_buffer; | |
140 int old_point = -1, start_point; | |
141 Lisp_Object original; | |
142 */ | |
143 | |
2193
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
144 #define PRINTPREPARE \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
145 original = printcharfun; \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
146 if (NILP (printcharfun)) printcharfun = Qt; \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
147 if (XTYPE (printcharfun) == Lisp_Buffer) \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
148 { if (XBUFFER (printcharfun) != current_buffer) \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
149 Fset_buffer (printcharfun); \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
150 printcharfun = Qnil;} \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
151 if (XTYPE (printcharfun) == Lisp_Marker) \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
152 { if (!(XMARKER (original)->buffer)) \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
153 error ("Marker does not point anywhere"); \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
154 if (XMARKER (original)->buffer != current_buffer) \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
155 set_buffer_internal (XMARKER (original)->buffer); \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
156 old_point = point; \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
157 SET_PT (marker_position (printcharfun)); \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
158 start_point = point; \ |
329 | 159 printcharfun = Qnil;} |
160 | |
2193
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
161 #define PRINTFINISH \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
162 if (XTYPE (original) == Lisp_Marker) \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
163 Fset_marker (original, make_number (point), Qnil); \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
164 if (old_point >= 0) \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
165 SET_PT (old_point + (old_point >= start_point \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
166 ? point - start_point : 0)); \ |
652b38173a63
(PRINTPREPARE): Handle marker that points nowhere.
Richard M. Stallman <rms@gnu.org>
parents:
1991
diff
changeset
|
167 if (old != current_buffer) \ |
329 | 168 set_buffer_internal (old) |
169 | |
170 #define PRINTCHAR(ch) printchar (ch, printcharfun) | |
171 | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
172 /* Index of first unused element of FRAME_MESSAGE_BUF(mini_frame). */ |
329 | 173 static int printbufidx; |
174 | |
175 static void | |
176 printchar (ch, fun) | |
177 unsigned char ch; | |
178 Lisp_Object fun; | |
179 { | |
180 Lisp_Object ch1; | |
181 | |
182 #ifdef MAX_PRINT_CHARS | |
183 if (max_print) | |
184 print_chars++; | |
185 #endif /* MAX_PRINT_CHARS */ | |
186 #ifndef standalone | |
187 if (EQ (fun, Qnil)) | |
188 { | |
189 QUIT; | |
190 insert (&ch, 1); | |
191 return; | |
192 } | |
193 | |
194 if (EQ (fun, Qt)) | |
195 { | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
196 struct frame *mini_frame |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
197 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
198 |
329 | 199 if (noninteractive) |
200 { | |
201 putchar (ch); | |
202 noninteractive_need_newline = 1; | |
203 return; | |
204 } | |
205 | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
206 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame) |
329 | 207 || !message_buf_print) |
208 { | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
209 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame); |
329 | 210 printbufidx = 0; |
5233
83e771f33251
(printchar, strout): Set echo_area_glyphs_length.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
211 echo_area_glyphs_length = 0; |
329 | 212 message_buf_print = 1; |
213 } | |
214 | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
215 if (printbufidx < FRAME_WIDTH (mini_frame) - 1) |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
216 FRAME_MESSAGE_BUF (mini_frame)[printbufidx++] = ch; |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
217 FRAME_MESSAGE_BUF (mini_frame)[printbufidx] = 0; |
5233
83e771f33251
(printchar, strout): Set echo_area_glyphs_length.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
218 echo_area_glyphs_length = printbufidx; |
329 | 219 |
220 return; | |
221 } | |
222 #endif /* not standalone */ | |
223 | |
224 XFASTINT (ch1) = ch; | |
225 call1 (fun, ch1); | |
226 } | |
227 | |
228 static void | |
229 strout (ptr, size, printcharfun) | |
230 char *ptr; | |
231 int size; | |
232 Lisp_Object printcharfun; | |
233 { | |
234 int i = 0; | |
235 | |
236 if (EQ (printcharfun, Qnil)) | |
237 { | |
238 insert (ptr, size >= 0 ? size : strlen (ptr)); | |
239 #ifdef MAX_PRINT_CHARS | |
240 if (max_print) | |
241 print_chars += size >= 0 ? size : strlen(ptr); | |
242 #endif /* MAX_PRINT_CHARS */ | |
243 return; | |
244 } | |
245 if (EQ (printcharfun, Qt)) | |
246 { | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
247 struct frame *mini_frame |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
248 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
249 |
329 | 250 i = size >= 0 ? size : strlen (ptr); |
251 #ifdef MAX_PRINT_CHARS | |
252 if (max_print) | |
253 print_chars += i; | |
254 #endif /* MAX_PRINT_CHARS */ | |
255 | |
256 if (noninteractive) | |
257 { | |
258 fwrite (ptr, 1, i, stdout); | |
259 noninteractive_need_newline = 1; | |
260 return; | |
261 } | |
262 | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
263 if (echo_area_glyphs != FRAME_MESSAGE_BUF (mini_frame) |
329 | 264 || !message_buf_print) |
265 { | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
266 echo_area_glyphs = FRAME_MESSAGE_BUF (mini_frame); |
329 | 267 printbufidx = 0; |
5233
83e771f33251
(printchar, strout): Set echo_area_glyphs_length.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
268 echo_area_glyphs_length = 0; |
329 | 269 message_buf_print = 1; |
270 } | |
271 | |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
272 if (i > FRAME_WIDTH (mini_frame) - printbufidx - 1) |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
273 i = FRAME_WIDTH (mini_frame) - printbufidx - 1; |
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
274 bcopy (ptr, &FRAME_MESSAGE_BUF (mini_frame) [printbufidx], i); |
329 | 275 printbufidx += i; |
5233
83e771f33251
(printchar, strout): Set echo_area_glyphs_length.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
276 echo_area_glyphs_length = printbufidx; |
5487
58a9bb23c3ea
(strout, printchar): Use proper frame for minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
5233
diff
changeset
|
277 FRAME_MESSAGE_BUF (mini_frame) [printbufidx] = 0; |
329 | 278 |
279 return; | |
280 } | |
281 | |
282 if (size >= 0) | |
283 while (i < size) | |
284 PRINTCHAR (ptr[i++]); | |
285 else | |
286 while (ptr[i]) | |
287 PRINTCHAR (ptr[i++]); | |
288 } | |
289 | |
290 /* Print the contents of a string STRING using PRINTCHARFUN. | |
291 It isn't safe to use strout, because printing one char can relocate. */ | |
292 | |
293 print_string (string, printcharfun) | |
294 Lisp_Object string; | |
295 Lisp_Object printcharfun; | |
296 { | |
297 if (EQ (printcharfun, Qnil) || EQ (printcharfun, Qt)) | |
766 | 298 /* In predictable cases, strout is safe: output to buffer or frame. */ |
329 | 299 strout (XSTRING (string)->data, XSTRING (string)->size, printcharfun); |
300 else | |
301 { | |
302 /* Otherwise, fetch the string address for each character. */ | |
303 int i; | |
304 int size = XSTRING (string)->size; | |
305 struct gcpro gcpro1; | |
306 GCPRO1 (string); | |
307 for (i = 0; i < size; i++) | |
308 PRINTCHAR (XSTRING (string)->data[i]); | |
309 UNGCPRO; | |
310 } | |
311 } | |
312 | |
313 DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0, | |
314 "Output character CHAR to stream STREAM.\n\ | |
315 STREAM defaults to the value of `standard-output' (which see).") | |
316 (ch, printcharfun) | |
317 Lisp_Object ch, printcharfun; | |
318 { | |
319 struct buffer *old = current_buffer; | |
320 int old_point = -1; | |
321 int start_point; | |
322 Lisp_Object original; | |
323 | |
520 | 324 if (NILP (printcharfun)) |
329 | 325 printcharfun = Vstandard_output; |
326 CHECK_NUMBER (ch, 0); | |
327 PRINTPREPARE; | |
328 PRINTCHAR (XINT (ch)); | |
329 PRINTFINISH; | |
330 return ch; | |
331 } | |
332 | |
333 /* Used from outside of print.c to print a block of SIZE chars at DATA | |
334 on the default output stream. | |
335 Do not use this on the contents of a Lisp string. */ | |
336 | |
337 write_string (data, size) | |
338 char *data; | |
339 int size; | |
340 { | |
341 struct buffer *old = current_buffer; | |
342 Lisp_Object printcharfun; | |
343 int old_point = -1; | |
344 int start_point; | |
345 Lisp_Object original; | |
346 | |
347 printcharfun = Vstandard_output; | |
348 | |
349 PRINTPREPARE; | |
350 strout (data, size, printcharfun); | |
351 PRINTFINISH; | |
352 } | |
353 | |
354 /* Used from outside of print.c to print a block of SIZE chars at DATA | |
355 on a specified stream PRINTCHARFUN. | |
356 Do not use this on the contents of a Lisp string. */ | |
357 | |
358 write_string_1 (data, size, printcharfun) | |
359 char *data; | |
360 int size; | |
361 Lisp_Object printcharfun; | |
362 { | |
363 struct buffer *old = current_buffer; | |
364 int old_point = -1; | |
365 int start_point; | |
366 Lisp_Object original; | |
367 | |
368 PRINTPREPARE; | |
369 strout (data, size, printcharfun); | |
370 PRINTFINISH; | |
371 } | |
372 | |
373 | |
374 #ifndef standalone | |
375 | |
376 void | |
377 temp_output_buffer_setup (bufname) | |
378 char *bufname; | |
379 { | |
380 register struct buffer *old = current_buffer; | |
381 register Lisp_Object buf; | |
382 | |
383 Fset_buffer (Fget_buffer_create (build_string (bufname))); | |
384 | |
385 current_buffer->read_only = Qnil; | |
386 Ferase_buffer (); | |
387 | |
388 XSET (buf, Lisp_Buffer, current_buffer); | |
389 specbind (Qstandard_output, buf); | |
390 | |
391 set_buffer_internal (old); | |
392 } | |
393 | |
394 Lisp_Object | |
395 internal_with_output_to_temp_buffer (bufname, function, args) | |
396 char *bufname; | |
397 Lisp_Object (*function) (); | |
398 Lisp_Object args; | |
399 { | |
400 int count = specpdl_ptr - specpdl; | |
401 Lisp_Object buf, val; | |
402 | |
403 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
404 temp_output_buffer_setup (bufname); | |
405 buf = Vstandard_output; | |
406 | |
407 val = (*function) (args); | |
408 | |
409 temp_output_buffer_show (buf); | |
410 | |
411 return unbind_to (count, val); | |
412 } | |
413 | |
414 DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer, | |
415 1, UNEVALLED, 0, | |
416 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.\n\ | |
417 The buffer is cleared out initially, and marked as unmodified when done.\n\ | |
418 All output done by BODY is inserted in that buffer by default.\n\ | |
419 The buffer is displayed in another window, but not selected.\n\ | |
420 The value of the last form in BODY is returned.\n\ | |
421 If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\n\ | |
3337
f5f76ebe6286
(Fwith_output_to_temp_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2782
diff
changeset
|
422 If variable `temp-buffer-show-function' is non-nil, call it at the end\n\ |
329 | 423 to get the buffer displayed. It gets one argument, the buffer to display.") |
424 (args) | |
425 Lisp_Object args; | |
426 { | |
427 struct gcpro gcpro1; | |
428 Lisp_Object name; | |
429 int count = specpdl_ptr - specpdl; | |
430 Lisp_Object buf, val; | |
431 | |
432 GCPRO1(args); | |
433 name = Feval (Fcar (args)); | |
434 UNGCPRO; | |
435 | |
436 CHECK_STRING (name, 0); | |
437 temp_output_buffer_setup (XSTRING (name)->data); | |
438 buf = Vstandard_output; | |
439 | |
440 val = Fprogn (Fcdr (args)); | |
441 | |
442 temp_output_buffer_show (buf); | |
443 | |
444 return unbind_to (count, val); | |
445 } | |
446 #endif /* not standalone */ | |
447 | |
448 static void print (); | |
449 | |
450 DEFUN ("terpri", Fterpri, Sterpri, 0, 1, 0, | |
451 "Output a newline to STREAM.\n\ | |
452 If STREAM is omitted or nil, the value of `standard-output' is used.") | |
453 (printcharfun) | |
454 Lisp_Object printcharfun; | |
455 { | |
456 struct buffer *old = current_buffer; | |
457 int old_point = -1; | |
458 int start_point; | |
459 Lisp_Object original; | |
460 | |
520 | 461 if (NILP (printcharfun)) |
329 | 462 printcharfun = Vstandard_output; |
463 PRINTPREPARE; | |
464 PRINTCHAR ('\n'); | |
465 PRINTFINISH; | |
466 return Qt; | |
467 } | |
468 | |
469 DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0, | |
470 "Output the printed representation of OBJECT, any Lisp object.\n\ | |
471 Quoting characters are printed when needed to make output that `read'\n\ | |
472 can handle, whenever this is possible.\n\ | |
473 Output stream is STREAM, or value of `standard-output' (which see).") | |
474 (obj, printcharfun) | |
475 Lisp_Object obj, printcharfun; | |
476 { | |
477 struct buffer *old = current_buffer; | |
478 int old_point = -1; | |
479 int start_point; | |
480 Lisp_Object original; | |
481 | |
482 #ifdef MAX_PRINT_CHARS | |
483 max_print = 0; | |
484 #endif /* MAX_PRINT_CHARS */ | |
520 | 485 if (NILP (printcharfun)) |
329 | 486 printcharfun = Vstandard_output; |
487 PRINTPREPARE; | |
488 print_depth = 0; | |
489 print (obj, printcharfun, 1); | |
490 PRINTFINISH; | |
491 return obj; | |
492 } | |
493 | |
494 /* a buffer which is used to hold output being built by prin1-to-string */ | |
495 Lisp_Object Vprin1_to_string_buffer; | |
496 | |
497 DEFUN ("prin1-to-string", Fprin1_to_string, Sprin1_to_string, 1, 2, 0, | |
498 "Return a string containing the printed representation of OBJECT,\n\ | |
499 any Lisp object. Quoting characters are used when needed to make output\n\ | |
500 that `read' can handle, whenever this is possible, unless the optional\n\ | |
501 second argument NOESCAPE is non-nil.") | |
502 (obj, noescape) | |
503 Lisp_Object obj, noescape; | |
504 { | |
505 struct buffer *old = current_buffer; | |
506 int old_point = -1; | |
507 int start_point; | |
508 Lisp_Object original, printcharfun; | |
509 struct gcpro gcpro1; | |
510 | |
511 printcharfun = Vprin1_to_string_buffer; | |
512 PRINTPREPARE; | |
513 print_depth = 0; | |
520 | 514 print (obj, printcharfun, NILP (noescape)); |
329 | 515 /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINSH */ |
516 PRINTFINISH; | |
517 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer)); | |
518 obj = Fbuffer_string (); | |
519 | |
520 GCPRO1 (obj); | |
521 Ferase_buffer (); | |
522 set_buffer_internal (old); | |
523 UNGCPRO; | |
524 | |
525 return obj; | |
526 } | |
527 | |
528 DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0, | |
529 "Output the printed representation of OBJECT, any Lisp object.\n\ | |
530 No quoting characters are used; no delimiters are printed around\n\ | |
531 the contents of strings.\n\ | |
532 Output stream is STREAM, or value of standard-output (which see).") | |
533 (obj, printcharfun) | |
534 Lisp_Object obj, printcharfun; | |
535 { | |
536 struct buffer *old = current_buffer; | |
537 int old_point = -1; | |
538 int start_point; | |
539 Lisp_Object original; | |
540 | |
520 | 541 if (NILP (printcharfun)) |
329 | 542 printcharfun = Vstandard_output; |
543 PRINTPREPARE; | |
544 print_depth = 0; | |
545 print (obj, printcharfun, 0); | |
546 PRINTFINISH; | |
547 return obj; | |
548 } | |
549 | |
550 DEFUN ("print", Fprint, Sprint, 1, 2, 0, | |
551 "Output the printed representation of OBJECT, with newlines around it.\n\ | |
552 Quoting characters are printed when needed to make output that `read'\n\ | |
553 can handle, whenever this is possible.\n\ | |
554 Output stream is STREAM, or value of `standard-output' (which see).") | |
555 (obj, printcharfun) | |
556 Lisp_Object obj, printcharfun; | |
557 { | |
558 struct buffer *old = current_buffer; | |
559 int old_point = -1; | |
560 int start_point; | |
561 Lisp_Object original; | |
562 struct gcpro gcpro1; | |
563 | |
564 #ifdef MAX_PRINT_CHARS | |
565 print_chars = 0; | |
566 max_print = MAX_PRINT_CHARS; | |
567 #endif /* MAX_PRINT_CHARS */ | |
520 | 568 if (NILP (printcharfun)) |
329 | 569 printcharfun = Vstandard_output; |
570 GCPRO1 (obj); | |
571 PRINTPREPARE; | |
572 print_depth = 0; | |
573 PRINTCHAR ('\n'); | |
574 print (obj, printcharfun, 1); | |
575 PRINTCHAR ('\n'); | |
576 PRINTFINISH; | |
577 #ifdef MAX_PRINT_CHARS | |
578 max_print = 0; | |
579 print_chars = 0; | |
580 #endif /* MAX_PRINT_CHARS */ | |
581 UNGCPRO; | |
582 return obj; | |
583 } | |
584 | |
585 /* The subroutine object for external-debugging-output is kept here | |
586 for the convenience of the debugger. */ | |
587 Lisp_Object Qexternal_debugging_output; | |
588 | |
621 | 589 DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0, |
590 "Write CHARACTER to stderr.\n\ | |
329 | 591 You can call print while debugging emacs, and pass it this function\n\ |
592 to make it write to the debugging output.\n") | |
621 | 593 (character) |
594 Lisp_Object character; | |
329 | 595 { |
596 CHECK_NUMBER (character, 0); | |
597 putc (XINT (character), stderr); | |
598 | |
599 return character; | |
600 } | |
6533
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
601 |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
602 /* This is the interface for debugging printing. */ |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
603 |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
604 void |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
605 debug_print (arg) |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
606 Lisp_Object arg; |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
607 { |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
608 Fprin1 (arg, Qexternal_debugging_output); |
49f896769be4
(debug_print): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5852
diff
changeset
|
609 } |
329 | 610 |
611 #ifdef LISP_FLOAT_TYPE | |
612 | |
613 /* | |
1759
3c615a9dcd64
(float_to_string): Add `.0' at end if needed.
Richard M. Stallman <rms@gnu.org>
parents:
1521
diff
changeset
|
614 * The buffer should be at least as large as the max string size of the |
329 | 615 * largest float, printed in the biggest notation. This is undoubtably |
616 * 20d float_output_format, with the negative of the C-constant "HUGE" | |
617 * from <math.h>. | |
618 * | |
619 * On the vax the worst case is -1e38 in 20d format which takes 61 bytes. | |
620 * | |
621 * I assume that IEEE-754 format numbers can take 329 bytes for the worst | |
622 * case of -1e307 in 20d float_output_format. What is one to do (short of | |
623 * re-writing _doprnt to be more sane)? | |
624 * -wsr | |
625 */ | |
1759
3c615a9dcd64
(float_to_string): Add `.0' at end if needed.
Richard M. Stallman <rms@gnu.org>
parents:
1521
diff
changeset
|
626 |
3c615a9dcd64
(float_to_string): Add `.0' at end if needed.
Richard M. Stallman <rms@gnu.org>
parents:
1521
diff
changeset
|
627 void |
3c615a9dcd64
(float_to_string): Add `.0' at end if needed.
Richard M. Stallman <rms@gnu.org>
parents:
1521
diff
changeset
|
628 float_to_string (buf, data) |
1991
0f88f314fc34
* print.c (float_to_string): Define buf to be an unsigned char, to
Jim Blandy <jimb@redhat.com>
parents:
1967
diff
changeset
|
629 unsigned char *buf; |
329 | 630 double data; |
631 { | |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
632 unsigned char *cp; |
4224
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
633 int width; |
329 | 634 |
520 | 635 if (NILP (Vfloat_output_format) |
329 | 636 || XTYPE (Vfloat_output_format) != Lisp_String) |
637 lose: | |
4224
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
638 { |
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
639 sprintf (buf, "%.17g", data); |
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
640 width = -1; |
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
641 } |
329 | 642 else /* oink oink */ |
643 { | |
644 /* Check that the spec we have is fully valid. | |
645 This means not only valid for printf, | |
646 but meant for floats, and reasonable. */ | |
647 cp = XSTRING (Vfloat_output_format)->data; | |
648 | |
649 if (cp[0] != '%') | |
650 goto lose; | |
651 if (cp[1] != '.') | |
652 goto lose; | |
653 | |
654 cp += 2; | |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
655 |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
656 /* Check the width specification. */ |
4224
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
657 width = -1; |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
658 if ('0' <= *cp && *cp <= '9') |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
659 for (width = 0; (*cp >= '0' && *cp <= '9'); cp++) |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
660 width = (width * 10) + (*cp - '0'); |
329 | 661 |
662 if (*cp != 'e' && *cp != 'f' && *cp != 'g') | |
663 goto lose; | |
664 | |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
665 /* A precision of zero is valid for %f; everything else requires |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
666 at least one. Width may be omitted anywhere. */ |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
667 if (width != -1 |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
668 && (width < (*cp != 'f') |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
669 || width > DBL_DIG)) |
329 | 670 goto lose; |
671 | |
672 if (cp[1] != 0) | |
673 goto lose; | |
674 | |
675 sprintf (buf, XSTRING (Vfloat_output_format)->data, data); | |
676 } | |
1759
3c615a9dcd64
(float_to_string): Add `.0' at end if needed.
Richard M. Stallman <rms@gnu.org>
parents:
1521
diff
changeset
|
677 |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
678 /* Make sure there is a decimal point with digit after, or an |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
679 exponent, so that the value is readable as a float. But don't do |
4224
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
680 this with "%.0f"; it's valid for that not to produce a decimal |
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
681 point. Note that width can be 0 only for %.0f. */ |
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
682 if (width != 0) |
1764
94ff5d9ef48a
(float_to_string): Add final 0 if text ends with decimal pt.
Richard M. Stallman <rms@gnu.org>
parents:
1759
diff
changeset
|
683 { |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
684 for (cp = buf; *cp; cp++) |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
685 if ((*cp < '0' || *cp > '9') && *cp != '-') |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
686 break; |
1764
94ff5d9ef48a
(float_to_string): Add final 0 if text ends with decimal pt.
Richard M. Stallman <rms@gnu.org>
parents:
1759
diff
changeset
|
687 |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
688 if (*cp == '.' && cp[1] == 0) |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
689 { |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
690 cp[1] = '0'; |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
691 cp[2] = 0; |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
692 } |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
693 |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
694 if (*cp == 0) |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
695 { |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
696 *cp++ = '.'; |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
697 *cp++ = '0'; |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
698 *cp++ = 0; |
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
699 } |
1759
3c615a9dcd64
(float_to_string): Add `.0' at end if needed.
Richard M. Stallman <rms@gnu.org>
parents:
1521
diff
changeset
|
700 } |
329 | 701 } |
702 #endif /* LISP_FLOAT_TYPE */ | |
703 | |
704 static void | |
705 print (obj, printcharfun, escapeflag) | |
706 Lisp_Object obj; | |
707 register Lisp_Object printcharfun; | |
708 int escapeflag; | |
709 { | |
710 char buf[30]; | |
711 | |
712 QUIT; | |
713 | |
379
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
714 #if 1 /* I'm not sure this is really worth doing. */ |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
715 /* Detect circularities and truncate them. |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
716 No need to offer any alternative--this is better than an error. */ |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
717 if (XTYPE (obj) == Lisp_Cons || XTYPE (obj) == Lisp_Vector |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
718 || XTYPE (obj) == Lisp_Compiled) |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
719 { |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
720 int i; |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
721 for (i = 0; i < print_depth; i++) |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
722 if (EQ (obj, being_printed[i])) |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
723 { |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
724 sprintf (buf, "#%d", i); |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
725 strout (buf, -1, printcharfun); |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
726 return; |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
727 } |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
728 } |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
729 #endif |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
730 |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
731 being_printed[print_depth] = obj; |
329 | 732 print_depth++; |
733 | |
379
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
734 if (print_depth > PRINT_CIRCLE) |
329 | 735 error ("Apparently circular structure being printed"); |
736 #ifdef MAX_PRINT_CHARS | |
737 if (max_print && print_chars > max_print) | |
738 { | |
739 PRINTCHAR ('\n'); | |
740 print_chars = 0; | |
741 } | |
742 #endif /* MAX_PRINT_CHARS */ | |
743 | |
744 #ifdef SWITCH_ENUM_BUG | |
745 switch ((int) XTYPE (obj)) | |
746 #else | |
747 switch (XTYPE (obj)) | |
748 #endif | |
749 { | |
750 default: | |
751 /* We're in trouble if this happens! | |
752 Probably should just abort () */ | |
753 strout ("#<EMACS BUG: INVALID DATATYPE ", -1, printcharfun); | |
754 sprintf (buf, "(#o%3o)", (int) XTYPE (obj)); | |
755 strout (buf, -1, printcharfun); | |
756 strout (" Save your buffers immediately and please report this bug>", | |
757 -1, printcharfun); | |
758 break; | |
759 | |
760 #ifdef LISP_FLOAT_TYPE | |
761 case Lisp_Float: | |
762 { | |
763 char pigbuf[350]; /* see comments in float_to_string */ | |
764 | |
765 float_to_string (pigbuf, XFLOAT(obj)->data); | |
766 strout (pigbuf, -1, printcharfun); | |
767 } | |
768 break; | |
769 #endif /* LISP_FLOAT_TYPE */ | |
770 | |
771 case Lisp_Int: | |
772 sprintf (buf, "%d", XINT (obj)); | |
773 strout (buf, -1, printcharfun); | |
774 break; | |
775 | |
776 case Lisp_String: | |
777 if (!escapeflag) | |
778 print_string (obj, printcharfun); | |
779 else | |
780 { | |
781 register int i; | |
782 register unsigned char c; | |
783 struct gcpro gcpro1; | |
784 | |
1967 | 785 GCPRO1 (obj); |
786 | |
787 #ifdef USE_TEXT_PROPERTIES | |
788 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals)) | |
789 { | |
790 PRINTCHAR ('#'); | |
791 PRINTCHAR ('('); | |
792 } | |
793 #endif | |
329 | 794 |
795 PRINTCHAR ('\"'); | |
796 for (i = 0; i < XSTRING (obj)->size; i++) | |
797 { | |
798 QUIT; | |
799 c = XSTRING (obj)->data[i]; | |
800 if (c == '\n' && print_escape_newlines) | |
801 { | |
802 PRINTCHAR ('\\'); | |
803 PRINTCHAR ('n'); | |
804 } | |
5852
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
805 else if (c == '\f' && print_escape_newlines) |
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
806 { |
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
807 PRINTCHAR ('\\'); |
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
808 PRINTCHAR ('f'); |
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
809 } |
329 | 810 else |
811 { | |
812 if (c == '\"' || c == '\\') | |
813 PRINTCHAR ('\\'); | |
814 PRINTCHAR (c); | |
815 } | |
816 } | |
817 PRINTCHAR ('\"'); | |
1967 | 818 |
819 #ifdef USE_TEXT_PROPERTIES | |
820 if (!NULL_INTERVAL_P (XSTRING (obj)->intervals)) | |
821 { | |
822 traverse_intervals (XSTRING (obj)->intervals, | |
823 0, 0, print_interval, printcharfun); | |
824 PRINTCHAR (')'); | |
825 } | |
826 #endif | |
827 | |
329 | 828 UNGCPRO; |
829 } | |
830 break; | |
831 | |
832 case Lisp_Symbol: | |
833 { | |
834 register int confusing; | |
835 register unsigned char *p = XSYMBOL (obj)->name->data; | |
836 register unsigned char *end = p + XSYMBOL (obj)->name->size; | |
837 register unsigned char c; | |
838 | |
839 if (p != end && (*p == '-' || *p == '+')) p++; | |
840 if (p == end) | |
841 confusing = 0; | |
842 else | |
843 { | |
844 while (p != end && *p >= '0' && *p <= '9') | |
845 p++; | |
846 confusing = (end == p); | |
847 } | |
848 | |
849 p = XSYMBOL (obj)->name->data; | |
850 while (p != end) | |
851 { | |
852 QUIT; | |
853 c = *p++; | |
854 if (escapeflag) | |
855 { | |
856 if (c == '\"' || c == '\\' || c == '\'' || c == ';' || c == '#' || | |
857 c == '(' || c == ')' || c == ',' || c =='.' || c == '`' || | |
858 c == '[' || c == ']' || c == '?' || c <= 040 || confusing) | |
859 PRINTCHAR ('\\'), confusing = 0; | |
860 } | |
861 PRINTCHAR (c); | |
862 } | |
863 } | |
864 break; | |
865 | |
866 case Lisp_Cons: | |
867 /* If deeper than spec'd depth, print placeholder. */ | |
868 if (XTYPE (Vprint_level) == Lisp_Int | |
869 && print_depth > XINT (Vprint_level)) | |
870 { | |
871 strout ("...", -1, printcharfun); | |
872 break; | |
873 } | |
874 | |
875 PRINTCHAR ('('); | |
876 { | |
877 register int i = 0; | |
878 register int max = 0; | |
879 | |
880 if (XTYPE (Vprint_length) == Lisp_Int) | |
881 max = XINT (Vprint_length); | |
379
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
882 /* Could recognize circularities in cdrs here, |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
883 but that would make printing of long lists quadratic. |
34ec8957c6c0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
373
diff
changeset
|
884 It's not worth doing. */ |
329 | 885 while (CONSP (obj)) |
886 { | |
887 if (i++) | |
888 PRINTCHAR (' '); | |
889 if (max && i > max) | |
890 { | |
891 strout ("...", 3, printcharfun); | |
892 break; | |
893 } | |
894 print (Fcar (obj), printcharfun, escapeflag); | |
895 obj = Fcdr (obj); | |
896 } | |
897 } | |
520 | 898 if (!NILP (obj) && !CONSP (obj)) |
329 | 899 { |
900 strout (" . ", 3, printcharfun); | |
901 print (obj, printcharfun, escapeflag); | |
902 } | |
903 PRINTCHAR (')'); | |
904 break; | |
905 | |
906 case Lisp_Compiled: | |
373
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
329
diff
changeset
|
907 strout ("#", -1, printcharfun); |
329 | 908 case Lisp_Vector: |
909 PRINTCHAR ('['); | |
910 { | |
911 register int i; | |
912 register Lisp_Object tem; | |
913 for (i = 0; i < XVECTOR (obj)->size; i++) | |
914 { | |
915 if (i) PRINTCHAR (' '); | |
916 tem = XVECTOR (obj)->contents[i]; | |
917 print (tem, printcharfun, escapeflag); | |
918 } | |
919 } | |
920 PRINTCHAR (']'); | |
921 break; | |
922 | |
923 #ifndef standalone | |
924 case Lisp_Buffer: | |
520 | 925 if (NILP (XBUFFER (obj)->name)) |
329 | 926 strout ("#<killed buffer>", -1, printcharfun); |
927 else if (escapeflag) | |
928 { | |
929 strout ("#<buffer ", -1, printcharfun); | |
930 print_string (XBUFFER (obj)->name, printcharfun); | |
931 PRINTCHAR ('>'); | |
932 } | |
933 else | |
934 print_string (XBUFFER (obj)->name, printcharfun); | |
935 break; | |
936 | |
937 case Lisp_Process: | |
938 if (escapeflag) | |
939 { | |
940 strout ("#<process ", -1, printcharfun); | |
941 print_string (XPROCESS (obj)->name, printcharfun); | |
942 PRINTCHAR ('>'); | |
943 } | |
944 else | |
945 print_string (XPROCESS (obj)->name, printcharfun); | |
946 break; | |
947 | |
948 case Lisp_Window: | |
949 strout ("#<window ", -1, printcharfun); | |
950 sprintf (buf, "%d", XFASTINT (XWINDOW (obj)->sequence_number)); | |
951 strout (buf, -1, printcharfun); | |
520 | 952 if (!NILP (XWINDOW (obj)->buffer)) |
329 | 953 { |
954 strout (" on ", -1, printcharfun); | |
955 print_string (XBUFFER (XWINDOW (obj)->buffer)->name, printcharfun); | |
956 } | |
957 PRINTCHAR ('>'); | |
958 break; | |
959 | |
960 case Lisp_Window_Configuration: | |
961 strout ("#<window-configuration>", -1, printcharfun); | |
962 break; | |
963 | |
766 | 964 #ifdef MULTI_FRAME |
965 case Lisp_Frame: | |
966 strout ((FRAME_LIVE_P (XFRAME (obj)) | |
967 ? "#<frame " : "#<dead frame "), | |
430 | 968 -1, printcharfun); |
766 | 969 print_string (XFRAME (obj)->name, printcharfun); |
1521
5d58b9e933ee
* print.c (print): Cast the frame's address to an integer before
Jim Blandy <jimb@redhat.com>
parents:
766
diff
changeset
|
970 sprintf (buf, " 0x%x", (unsigned int) (XFRAME (obj))); |
329 | 971 strout (buf, -1, printcharfun); |
972 strout (">", -1, printcharfun); | |
973 break; | |
766 | 974 #endif /* MULTI_FRAME */ |
329 | 975 |
976 case Lisp_Marker: | |
977 strout ("#<marker ", -1, printcharfun); | |
978 if (!(XMARKER (obj)->buffer)) | |
979 strout ("in no buffer", -1, printcharfun); | |
980 else | |
981 { | |
982 sprintf (buf, "at %d", marker_position (obj)); | |
983 strout (buf, -1, printcharfun); | |
984 strout (" in ", -1, printcharfun); | |
985 print_string (XMARKER (obj)->buffer->name, printcharfun); | |
986 } | |
987 PRINTCHAR ('>'); | |
988 break; | |
2782
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
989 |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
990 case Lisp_Overlay: |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
991 strout ("#<overlay ", -1, printcharfun); |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
992 if (!(XMARKER (OVERLAY_START (obj))->buffer)) |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
993 strout ("in no buffer", -1, printcharfun); |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
994 else |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
995 { |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
996 sprintf (buf, "from %d to %d in ", |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
997 marker_position (OVERLAY_START (obj)), |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
998 marker_position (OVERLAY_END (obj))); |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
999 strout (buf, -1, printcharfun); |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
1000 print_string (XMARKER (OVERLAY_START (obj))->buffer->name, |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
1001 printcharfun); |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
1002 } |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
1003 PRINTCHAR ('>'); |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
1004 break; |
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2193
diff
changeset
|
1005 |
329 | 1006 #endif /* standalone */ |
1007 | |
1008 case Lisp_Subr: | |
1009 strout ("#<subr ", -1, printcharfun); | |
1010 strout (XSUBR (obj)->symbol_name, -1, printcharfun); | |
1011 PRINTCHAR ('>'); | |
1012 break; | |
1013 } | |
1014 | |
1015 print_depth--; | |
1016 } | |
1017 | |
1967 | 1018 #ifdef USE_TEXT_PROPERTIES |
1019 | |
1020 /* Print a description of INTERVAL using PRINTCHARFUN. | |
1021 This is part of printing a string that has text properties. */ | |
1022 | |
1023 void | |
1024 print_interval (interval, printcharfun) | |
1025 INTERVAL interval; | |
1026 Lisp_Object printcharfun; | |
1027 { | |
4003
49918d6c6dda
* print.c: Get rid of extra space at the end of print syntax for
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1028 PRINTCHAR (' '); |
1967 | 1029 print (make_number (interval->position), printcharfun, 1); |
1030 PRINTCHAR (' '); | |
1031 print (make_number (interval->position + LENGTH (interval)), | |
1032 printcharfun, 1); | |
1033 PRINTCHAR (' '); | |
1034 print (interval->plist, printcharfun, 1); | |
1035 } | |
1036 | |
1037 #endif /* USE_TEXT_PROPERTIES */ | |
1038 | |
329 | 1039 void |
1040 syms_of_print () | |
1041 { | |
1042 staticpro (&Qprint_escape_newlines); | |
1043 Qprint_escape_newlines = intern ("print-escape-newlines"); | |
1044 | |
1045 DEFVAR_LISP ("standard-output", &Vstandard_output, | |
1046 "Output stream `print' uses by default for outputting a character.\n\ | |
1047 This may be any function of one argument.\n\ | |
1048 It may also be a buffer (output is inserted before point)\n\ | |
1049 or a marker (output is inserted and the marker is advanced)\n\ | |
1050 or the symbol t (output appears in the minibuffer line)."); | |
1051 Vstandard_output = Qt; | |
1052 Qstandard_output = intern ("standard-output"); | |
1053 staticpro (&Qstandard_output); | |
1054 | |
1055 #ifdef LISP_FLOAT_TYPE | |
1056 DEFVAR_LISP ("float-output-format", &Vfloat_output_format, | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
1057 "The format descriptor string used to print floats.\n\ |
329 | 1058 This is a %-spec like those accepted by `printf' in C,\n\ |
1059 but with some restrictions. It must start with the two characters `%.'.\n\ | |
1060 After that comes an integer precision specification,\n\ | |
1061 and then a letter which controls the format.\n\ | |
1062 The letters allowed are `e', `f' and `g'.\n\ | |
1063 Use `e' for exponential notation \"DIG.DIGITSeEXPT\"\n\ | |
1064 Use `f' for decimal point notation \"DIGITS.DIGITS\".\n\ | |
1065 Use `g' to choose the shorter of those two formats for the number at hand.\n\ | |
1066 The precision in any of these cases is the number of digits following\n\ | |
1067 the decimal point. With `f', a precision of 0 means to omit the\n\ | |
4140
2738089e8383
* print.c (float_to_string): Distinguish between a precision of
Jim Blandy <jimb@redhat.com>
parents:
4003
diff
changeset
|
1068 decimal point. 0 is not allowed with `e' or `g'.\n\n\ |
4224
6cb1cfba6500
(float_to_string): Don't use uninitialized pointer `cp'.
Richard M. Stallman <rms@gnu.org>
parents:
4140
diff
changeset
|
1069 A value of nil means to use `%.17g'."); |
329 | 1070 Vfloat_output_format = Qnil; |
1071 Qfloat_output_format = intern ("float-output-format"); | |
1072 staticpro (&Qfloat_output_format); | |
1073 #endif /* LISP_FLOAT_TYPE */ | |
1074 | |
1075 DEFVAR_LISP ("print-length", &Vprint_length, | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
621
diff
changeset
|
1076 "Maximum length of list to print before abbreviating.\n\ |
329 | 1077 A value of nil means no limit."); |
1078 Vprint_length = Qnil; | |
1079 | |
1080 DEFVAR_LISP ("print-level", &Vprint_level, | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
621
diff
changeset
|
1081 "Maximum depth of list nesting to print before abbreviating.\n\ |
329 | 1082 A value of nil means no limit."); |
1083 Vprint_level = Qnil; | |
1084 | |
1085 DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines, | |
5852
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
1086 "Non-nil means print newlines in strings as backslash-n. |
f2e341b1f908
(print): If print_escapes_newlines, print '\f' as "\\f".
Roland McGrath <roland@gnu.org>
parents:
5487
diff
changeset
|
1087 Also print formfeeds as backslash-f."); |
329 | 1088 print_escape_newlines = 0; |
1089 | |
1090 /* prin1_to_string_buffer initialized in init_buffer_once in buffer.c */ | |
1091 staticpro (&Vprin1_to_string_buffer); | |
1092 | |
1093 defsubr (&Sprin1); | |
1094 defsubr (&Sprin1_to_string); | |
1095 defsubr (&Sprinc); | |
1096 defsubr (&Sprint); | |
1097 defsubr (&Sterpri); | |
1098 defsubr (&Swrite_char); | |
1099 defsubr (&Sexternal_debugging_output); | |
1100 | |
1101 Qexternal_debugging_output = intern ("external-debugging-output"); | |
1102 staticpro (&Qexternal_debugging_output); | |
1103 | |
1104 #ifndef standalone | |
1105 defsubr (&Swith_output_to_temp_buffer); | |
1106 #endif /* not standalone */ | |
1107 } |