X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/c1b8b17a7ac22123fe8d2d647265f19d2cc92625..c026c0016e8075f4112e7ea0d868a8e2b81105d0:/src/print.c diff --git a/src/print.c b/src/print.c index 838d03666d..3c3dca7700 100644 --- a/src/print.c +++ b/src/print.c @@ -31,12 +31,14 @@ along with GNU Emacs. If not, see . */ #include "window.h" #include "process.h" #include "dispextern.h" +#include "disptab.h" #include "termchar.h" #include "intervals.h" #include "blockinput.h" #include "termhooks.h" /* For struct terminal. */ #include "font.h" +#include #include #include @@ -83,12 +85,11 @@ bool print_output_debug_flag EXTERNALLY_VISIBLE = 1; /* Lisp functions to do output using a stream must have the stream in a variable called printcharfun - and must start with PRINTPREPARE, end with PRINTFINISH, - and use PRINTDECLARE to declare common variables. - Use PRINTCHAR to output one character, + and must start with PRINTPREPARE, end with PRINTFINISH. + Use printchar to output one character, or call strout to output a block of characters. */ -#define PRINTDECLARE \ +#define PRINTPREPARE \ struct buffer *old = current_buffer; \ ptrdiff_t old_point = -1, start_point = -1; \ ptrdiff_t old_point_byte = -1, start_point_byte = -1; \ @@ -96,10 +97,7 @@ bool print_output_debug_flag EXTERNALLY_VISIBLE = 1; bool free_print_buffer = 0; \ bool multibyte \ = !NILP (BVAR (current_buffer, enable_multibyte_characters)); \ - Lisp_Object original - -#define PRINTPREPARE \ - original = printcharfun; \ + Lisp_Object original = printcharfun; \ if (NILP (printcharfun)) printcharfun = Qt; \ if (BUFFERP (printcharfun)) \ { \ @@ -189,8 +187,6 @@ bool print_output_debug_flag EXTERNALLY_VISIBLE = 1; ? PT_BYTE - start_point_byte : 0)); \ set_buffer_internal (old); -#define PRINTCHAR(ch) printchar (ch, printcharfun) - /* This is used to restore the saved contents of print_buffer when there is a recursive call to print. */ @@ -200,6 +196,61 @@ print_unwind (Lisp_Object saved_text) memcpy (print_buffer, SDATA (saved_text), SCHARS (saved_text)); } +/* Print character CH to the stdio stream STREAM. */ + +static void +printchar_to_stream (unsigned int ch, FILE *stream) +{ + Lisp_Object dv IF_LINT (= Qnil); + ptrdiff_t i = 0, n = 1; + + if (CHAR_VALID_P (ch) && DISP_TABLE_P (Vstandard_display_table)) + { + dv = DISP_CHAR_VECTOR (XCHAR_TABLE (Vstandard_display_table), ch); + if (VECTORP (dv)) + { + n = ASIZE (dv); + goto next_char; + } + } + + while (true) + { + if (ASCII_CHAR_P (ch)) + { + putc (ch, stream); +#ifdef WINDOWSNT + /* Send the output to a debugger (nothing happens if there + isn't one). */ + if (print_output_debug_flag && stream == stderr) + OutputDebugString ((char []) {ch, '\0'}); +#endif + } + else + { + unsigned char mbstr[MAX_MULTIBYTE_LENGTH]; + int len = CHAR_STRING (ch, mbstr); + Lisp_Object encoded_ch = + ENCODE_SYSTEM (make_multibyte_string ((char *) mbstr, 1, len)); + + fwrite (SSDATA (encoded_ch), 1, SBYTES (encoded_ch), stream); +#ifdef WINDOWSNT + if (print_output_debug_flag && stream == stderr) + OutputDebugString (SSDATA (encoded_ch)); +#endif + } + + i++; + + next_char: + for (; i < n; i++) + if (CHARACTERP (AREF (dv, i))) + break; + if (! (i < n)) + break; + ch = XFASTINT (AREF (dv, i)); + } +} /* Print character CH using method FUN. FUN nil means print to print_buffer. FUN t means print to echo area or stdout if @@ -231,7 +282,10 @@ printchar (unsigned int ch, Lisp_Object fun) else if (noninteractive) { printchar_stdout_last = ch; - fwrite (str, 1, len, stdout); + if (DISP_TABLE_P (Vstandard_display_table)) + printchar_to_stream (ch, stdout); + else + fwrite (str, 1, len, stdout); noninteractive_need_newline = 1; } else @@ -248,8 +302,7 @@ printchar (unsigned int ch, Lisp_Object fun) /* Output SIZE characters, SIZE_BYTE bytes from string PTR using - method PRINTCHARFUN. If SIZE < 0, use the string length of PTR for - both SIZE and SIZE_BYTE. PRINTCHARFUN nil means output to + method PRINTCHARFUN. PRINTCHARFUN nil means output to print_buffer. PRINTCHARFUN t means output to the echo area or to stdout if non-interactive. If neither nil nor t, call Lisp function PRINTCHARFUN for each character printed. MULTIBYTE @@ -262,9 +315,6 @@ static void strout (const char *ptr, ptrdiff_t size, ptrdiff_t size_byte, Lisp_Object printcharfun) { - if (size < 0) - size_byte = size = strlen (ptr); - if (NILP (printcharfun)) { ptrdiff_t incr = size_byte - (print_buffer_size - print_buffer_pos_byte); @@ -276,7 +326,19 @@ strout (const char *ptr, ptrdiff_t size, ptrdiff_t size_byte, } else if (noninteractive && EQ (printcharfun, Qt)) { - fwrite (ptr, 1, size_byte, stdout); + if (DISP_TABLE_P (Vstandard_display_table)) + { + int len; + for (ptrdiff_t i = 0; i < size_byte; i += len) + { + int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i, + len); + printchar_to_stream (ch, stdout); + } + } + else + fwrite (ptr, 1, size_byte, stdout); + noninteractive_need_newline = 1; } else if (EQ (printcharfun, Qt)) @@ -317,7 +379,7 @@ strout (const char *ptr, ptrdiff_t size, ptrdiff_t size_byte, while (i < size_byte) { int ch = ptr[i++]; - PRINTCHAR (ch); + printchar (ch, printcharfun); } } else @@ -330,7 +392,7 @@ strout (const char *ptr, ptrdiff_t size, ptrdiff_t size_byte, int len; int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i, len); - PRINTCHAR (ch); + printchar (ch, printcharfun); i += len; } } @@ -403,11 +465,9 @@ print_string (Lisp_Object string, Lisp_Object printcharfun) ptrdiff_t i; ptrdiff_t size = SCHARS (string); ptrdiff_t size_byte = SBYTES (string); - struct gcpro gcpro1; - GCPRO1 (string); if (size == size_byte) for (i = 0; i < size; i++) - PRINTCHAR (SREF (string, i)); + printchar (SREF (string, i), printcharfun); else for (i = 0; i < size_byte; ) { @@ -415,10 +475,9 @@ print_string (Lisp_Object string, Lisp_Object printcharfun) corresponding character code before handing it to PRINTCHAR. */ int len; int ch = STRING_CHAR_AND_LENGTH (SDATA (string) + i, len); - PRINTCHAR (ch); + printchar (ch, printcharfun); i += len; } - UNGCPRO; } } @@ -427,46 +486,45 @@ DEFUN ("write-char", Fwrite_char, Swrite_char, 1, 2, 0, PRINTCHARFUN defaults to the value of `standard-output' (which see). */) (Lisp_Object character, Lisp_Object printcharfun) { - PRINTDECLARE; - if (NILP (printcharfun)) printcharfun = Vstandard_output; CHECK_NUMBER (character); PRINTPREPARE; - PRINTCHAR (XINT (character)); + printchar (XINT (character), printcharfun); PRINTFINISH; return character; } -/* Used from outside of print.c to print a block of SIZE - single-byte chars at DATA on the default output stream. +/* Print the contents of a unibyte C string STRING using PRINTCHARFUN. + The caller should arrange to put this inside PRINTPREPARE and PRINTFINISH. Do not use this on the contents of a Lisp string. */ -void -write_string (const char *data, int size) +static void +print_c_string (char const *string, Lisp_Object printcharfun) { - PRINTDECLARE; - Lisp_Object printcharfun; + ptrdiff_t len = strlen (string); + strout (string, len, len, printcharfun); +} - printcharfun = Vstandard_output; +/* Print unibyte C string at DATA on a specified stream PRINTCHARFUN. + Do not use this on the contents of a Lisp string. */ +static void +write_string_1 (const char *data, Lisp_Object printcharfun) +{ PRINTPREPARE; - strout (data, size, size, printcharfun); + print_c_string (data, printcharfun); PRINTFINISH; } -/* Used to print a block of SIZE single-byte chars at DATA on a - specified stream PRINTCHARFUN. +/* Used from outside of print.c to print a C unibyte + string at DATA on the default output stream. Do not use this on the contents of a Lisp string. */ -static void -write_string_1 (const char *data, int size, Lisp_Object printcharfun) +void +write_string (const char *data) { - PRINTDECLARE; - - PRINTPREPARE; - strout (data, size, size, printcharfun); - PRINTFINISH; + write_string_1 (data, Vstandard_output); } @@ -515,9 +573,8 @@ beginning of a line. Value is non-nil if a newline is printed. If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used. */) (Lisp_Object printcharfun, Lisp_Object ensure) { - Lisp_Object val = Qnil; + Lisp_Object val; - PRINTDECLARE; if (NILP (printcharfun)) printcharfun = Vstandard_output; PRINTPREPARE; @@ -529,10 +586,11 @@ If PRINTCHARFUN is omitted or nil, the value of `standard-output' is used. */) signal_error ("Unsupported function argument", printcharfun); else if (noninteractive && !NILP (printcharfun)) val = printchar_stdout_last == 10 ? Qnil : Qt; - else if (NILP (Fbolp ())) - val = Qt; + else + val = NILP (Fbolp ()) ? Qt : Qnil; - if (!NILP (val)) PRINTCHAR ('\n'); + if (!NILP (val)) + printchar ('\n', printcharfun); PRINTFINISH; return val; } @@ -562,8 +620,6 @@ If PRINTCHARFUN is omitted, the value of `standard-output' (which see) is used instead. */) (Lisp_Object object, Lisp_Object printcharfun) { - PRINTDECLARE; - if (NILP (printcharfun)) printcharfun = Vstandard_output; PRINTPREPARE; @@ -588,32 +644,24 @@ a list, a buffer, a window, a frame, etc. A printed representation of an object is text which describes that object. */) (Lisp_Object object, Lisp_Object noescape) { - Lisp_Object printcharfun; - bool prev_abort_on_gc; - Lisp_Object save_deactivate_mark; ptrdiff_t count = SPECPDL_INDEX (); - struct buffer *previous; specbind (Qinhibit_modification_hooks, Qt); - { - PRINTDECLARE; - - /* Save and restore this--we are altering a buffer - but we don't want to deactivate the mark just for that. - No need for specbind, since errors deactivate the mark. */ - save_deactivate_mark = Vdeactivate_mark; - prev_abort_on_gc = abort_on_gc; - abort_on_gc = 1; - - printcharfun = Vprin1_to_string_buffer; - PRINTPREPARE; - print (object, printcharfun, NILP (noescape)); - /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINISH */ - PRINTFINISH; - } + /* Save and restore this: we are altering a buffer + but we don't want to deactivate the mark just for that. + No need for specbind, since errors deactivate the mark. */ + Lisp_Object save_deactivate_mark = Vdeactivate_mark; + bool prev_abort_on_gc = abort_on_gc; + abort_on_gc = true; - previous = current_buffer; + Lisp_Object printcharfun = Vprin1_to_string_buffer; + PRINTPREPARE; + print (object, printcharfun, NILP (noescape)); + /* Make Vprin1_to_string_buffer be the default buffer after PRINTFINISH */ + PRINTFINISH; + + struct buffer *previous = current_buffer; set_buffer_internal (XBUFFER (Vprin1_to_string_buffer)); object = Fbuffer_string (); if (SBYTES (object) == SCHARS (object)) @@ -655,8 +703,6 @@ If PRINTCHARFUN is omitted, the value of `standard-output' (which see) is used instead. */) (Lisp_Object object, Lisp_Object printcharfun) { - PRINTDECLARE; - if (NILP (printcharfun)) printcharfun = Vstandard_output; PRINTPREPARE; @@ -690,18 +736,13 @@ If PRINTCHARFUN is omitted, the value of `standard-output' (which see) is used instead. */) (Lisp_Object object, Lisp_Object printcharfun) { - PRINTDECLARE; - struct gcpro gcpro1; - if (NILP (printcharfun)) printcharfun = Vstandard_output; - GCPRO1 (object); PRINTPREPARE; - PRINTCHAR ('\n'); + printchar ('\n', printcharfun); print (object, printcharfun, 1); - PRINTCHAR ('\n'); + printchar ('\n', printcharfun); PRINTFINISH; - UNGCPRO; return object; } @@ -711,37 +752,8 @@ You can call print while debugging emacs, and pass it this function to make it write to the debugging output. */) (Lisp_Object character) { - unsigned int ch; - CHECK_NUMBER (character); - ch = XINT (character); - if (ASCII_CHAR_P (ch)) - { - putc (ch, stderr); -#ifdef WINDOWSNT - /* Send the output to a debugger (nothing happens if there isn't - one). */ - if (print_output_debug_flag) - { - char buf[2] = {(char) XINT (character), '\0'}; - OutputDebugString (buf); - } -#endif - } - else - { - unsigned char mbstr[MAX_MULTIBYTE_LENGTH]; - ptrdiff_t len = CHAR_STRING (ch, mbstr); - Lisp_Object encoded_ch = - ENCODE_SYSTEM (make_multibyte_string ((char *) mbstr, 1, len)); - - fwrite (SSDATA (encoded_ch), SBYTES (encoded_ch), 1, stderr); -#ifdef WINDOWSNT - if (print_output_debug_flag) - OutputDebugString (SSDATA (encoded_ch)); -#endif - } - + printchar_to_stream (XINT (character), stderr); return character; } @@ -817,9 +829,12 @@ safe_debug_print (Lisp_Object arg) if (valid > 0) debug_print (arg); else - fprintf (stderr, "#<%s_LISP_OBJECT 0x%08"pI"x>\r\n", - !valid ? "INVALID" : "SOME", - XLI (arg)); + { + EMACS_UINT n = XLI (arg); + fprintf (stderr, "#<%s_LISP_OBJECT 0x%08"pI"x>\r\n", + !valid ? "INVALID" : "SOME", + n); + } } @@ -832,7 +847,6 @@ error message is constructed. */) { struct buffer *old = current_buffer; Lisp_Object value; - struct gcpro gcpro1; /* If OBJ is (error STRING), just return STRING. That is not only faster, it also avoids the need to allocate @@ -848,10 +862,8 @@ error message is constructed. */) set_buffer_internal (XBUFFER (Vprin1_to_string_buffer)); value = Fbuffer_string (); - GCPRO1 (value); Ferase_buffer (); set_buffer_internal (old); - UNGCPRO; return value; } @@ -866,10 +878,9 @@ print_error_message (Lisp_Object data, Lisp_Object stream, const char *context, Lisp_Object caller) { Lisp_Object errname, errmsg, file_error, tail; - struct gcpro gcpro1; if (context != 0) - write_string_1 (context, -1, stream); + write_string_1 (context, stream); /* If we know from where the error was signaled, show it in *Messages*. */ @@ -880,7 +891,7 @@ print_error_message (Lisp_Object data, Lisp_Object stream, const char *context, USE_SAFE_ALLOCA; char *name = SAFE_ALLOCA (cnamelen); memcpy (name, SDATA (cname), cnamelen); - message_dolog (name, cnamelen, 0, 0); + message_dolog (name, cnamelen, 0, STRING_MULTIBYTE (cname)); message_dolog (": ", 2, 0, 0); SAFE_FREE (); } @@ -905,7 +916,6 @@ print_error_message (Lisp_Object data, Lisp_Object stream, const char *context, /* Print an error message including the data items. */ tail = Fcdr_safe (data); - GCPRO1 (tail); /* For file-error, make error message by concatenating all the data items. They are all strings. */ @@ -916,9 +926,9 @@ print_error_message (Lisp_Object data, Lisp_Object stream, const char *context, const char *sep = ": "; if (!STRINGP (errmsg)) - write_string_1 ("peculiar error", -1, stream); + write_string_1 ("peculiar error", stream); else if (SCHARS (errmsg)) - Fprinc (errmsg, stream); + Fprinc (Fsubstitute_command_keys (errmsg), stream); else sep = NULL; @@ -927,7 +937,7 @@ print_error_message (Lisp_Object data, Lisp_Object stream, const char *context, Lisp_Object obj; if (sep) - write_string_1 (sep, 2, stream); + write_string_1 (sep, stream); obj = XCAR (tail); if (!NILP (file_error) || EQ (errname, Qend_of_file) || EQ (errname, Quser_error)) @@ -936,8 +946,6 @@ print_error_message (Lisp_Object data, Lisp_Object stream, const char *context, Fprin1 (obj, stream); } } - - UNGCPRO; } @@ -1406,110 +1414,82 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) print_string (obj, printcharfun); else { - register ptrdiff_t i, i_byte; - struct gcpro gcpro1; + ptrdiff_t i, i_byte; ptrdiff_t size_byte; - /* 1 means we must ensure that the next character we output + /* True means we must ensure that the next character we output cannot be taken as part of a hex character escape. */ - bool need_nonhex = 0; + bool need_nonhex = false; bool multibyte = STRING_MULTIBYTE (obj); - GCPRO1 (obj); - if (! EQ (Vprint_charset_text_property, Qt)) obj = print_prune_string_charset (obj); if (string_intervals (obj)) - { - PRINTCHAR ('#'); - PRINTCHAR ('('); - } + print_c_string ("#(", printcharfun); - PRINTCHAR ('\"'); + printchar ('\"', printcharfun); size_byte = SBYTES (obj); for (i = 0, i_byte = 0; i_byte < size_byte;) { /* Here, we must convert each multi-byte form to the - corresponding character code before handing it to PRINTCHAR. */ + corresponding character code before handing it to printchar. */ int c; FETCH_STRING_CHAR_ADVANCE (c, obj, i, i_byte); QUIT; - if (c == '\n' && print_escape_newlines) - { - PRINTCHAR ('\\'); - PRINTCHAR ('n'); - } - else if (c == '\f' && print_escape_newlines) + if (multibyte + ? (CHAR_BYTE8_P (c) && (c = CHAR_TO_BYTE8 (c), true)) + : (SINGLE_BYTE_CHAR_P (c) && ! ASCII_CHAR_P (c) + && print_escape_nonascii)) { - PRINTCHAR ('\\'); - PRINTCHAR ('f'); - } - else if (multibyte - && (CHAR_BYTE8_P (c) - || (! ASCII_CHAR_P (c) && print_escape_multibyte))) - { - /* When multibyte is disabled, - print multibyte string chars using hex escapes. - For a char code that could be in a unibyte string, - when found in a multibyte string, always use a hex escape - so it reads back as multibyte. */ - char outbuf[50]; - int len; - - if (CHAR_BYTE8_P (c)) - len = sprintf (outbuf, "\\%03o", CHAR_TO_BYTE8 (c)); - else - { - len = sprintf (outbuf, "\\x%04x", c); - need_nonhex = 1; - } - strout (outbuf, len, len, printcharfun); - } - else if (! multibyte - && SINGLE_BYTE_CHAR_P (c) && ! ASCII_CHAR_P (c) - && print_escape_nonascii) - { - /* When printing in a multibyte buffer - or when explicitly requested, + /* When printing a raw 8-bit byte in a multibyte buffer, or + (when requested) a non-ASCII character in a unibyte buffer, print single-byte non-ASCII string chars using octal escapes. */ char outbuf[5]; - int len = sprintf (outbuf, "\\%03o", c); + int len = sprintf (outbuf, "\\%03o", c + 0u); strout (outbuf, len, len, printcharfun); + need_nonhex = false; + } + else if (multibyte + && ! ASCII_CHAR_P (c) && print_escape_multibyte) + { + /* When requested, print multibyte chars using hex escapes. */ + char outbuf[sizeof "\\x" + INT_STRLEN_BOUND (c)]; + int len = sprintf (outbuf, "\\x%04x", c + 0u); + strout (outbuf, len, len, printcharfun); + need_nonhex = true; } else { /* If we just had a hex escape, and this character could be taken as part of it, output `\ ' to prevent that. */ - if (need_nonhex) - { - need_nonhex = 0; - if ((c >= 'a' && c <= 'f') - || (c >= 'A' && c <= 'F') - || (c >= '0' && c <= '9')) - strout ("\\ ", -1, -1, printcharfun); - } - - if (c == '\"' || c == '\\') - PRINTCHAR ('\\'); - PRINTCHAR (c); + if (need_nonhex && c_isxdigit (c)) + print_c_string ("\\ ", printcharfun); + + if (c == '\n' && print_escape_newlines + ? (c = 'n', true) + : c == '\f' && print_escape_newlines + ? (c = 'f', true) + : c == '\"' || c == '\\') + printchar ('\\', printcharfun); + + printchar (c, printcharfun); + need_nonhex = false; } } - PRINTCHAR ('\"'); + printchar ('\"', printcharfun); if (string_intervals (obj)) { traverse_intervals (string_intervals (obj), 0, print_interval, printcharfun); - PRINTCHAR (')'); + printchar (')', printcharfun); } - - UNGCPRO; } break; @@ -1550,14 +1530,10 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) size_byte = SBYTES (name); if (! NILP (Vprint_gensym) && !SYMBOL_INTERNED_P (obj)) - { - PRINTCHAR ('#'); - PRINTCHAR (':'); - } + print_c_string ("#:", printcharfun); else if (size_byte == 0) { - PRINTCHAR ('#'); - PRINTCHAR ('#'); + print_c_string ("##", printcharfun); break; } @@ -1575,9 +1551,12 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) || c == ',' || c == '.' || c == '`' || c == '[' || c == ']' || c == '?' || c <= 040 || confusing) - PRINTCHAR ('\\'), confusing = 0; + { + printchar ('\\', printcharfun); + confusing = false; + } } - PRINTCHAR (c); + printchar (c, printcharfun); } } break; @@ -1586,111 +1565,105 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) /* If deeper than spec'd depth, print placeholder. */ if (INTEGERP (Vprint_level) && print_depth > XINT (Vprint_level)) - strout ("...", -1, -1, printcharfun); + print_c_string ("...", printcharfun); else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) - && (EQ (XCAR (obj), Qquote))) + && EQ (XCAR (obj), Qquote)) { - PRINTCHAR ('\''); + printchar ('\'', printcharfun); print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); } else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) - && (EQ (XCAR (obj), Qfunction))) + && EQ (XCAR (obj), Qfunction)) { - PRINTCHAR ('#'); - PRINTCHAR ('\''); + print_c_string ("#'", printcharfun); print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); } else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) - && ((EQ (XCAR (obj), Qbackquote)))) + && EQ (XCAR (obj), Qbackquote)) { - print_object (XCAR (obj), printcharfun, 0); + printchar ('`', printcharfun); new_backquote_output++; print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); new_backquote_output--; } else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) && new_backquote_output - && ((EQ (XCAR (obj), Qbackquote) - || EQ (XCAR (obj), Qcomma) - || EQ (XCAR (obj), Qcomma_at) - || EQ (XCAR (obj), Qcomma_dot)))) + && (EQ (XCAR (obj), Qcomma) + || EQ (XCAR (obj), Qcomma_at) + || EQ (XCAR (obj), Qcomma_dot))) { - print_object (XCAR (obj), printcharfun, 0); + print_object (XCAR (obj), printcharfun, false); new_backquote_output--; print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); new_backquote_output++; } else { - PRINTCHAR ('('); + printchar ('(', printcharfun); - { - printmax_t i, print_length; - Lisp_Object halftail = obj; + Lisp_Object halftail = obj; - /* Negative values of print-length are invalid in CL. - Treat them like nil, as CMUCL does. */ - if (NATNUMP (Vprint_length)) - print_length = XFASTINT (Vprint_length); - else - print_length = TYPE_MAXIMUM (printmax_t); + /* Negative values of print-length are invalid in CL. + Treat them like nil, as CMUCL does. */ + printmax_t print_length = (NATNUMP (Vprint_length) + ? XFASTINT (Vprint_length) + : TYPE_MAXIMUM (printmax_t)); - i = 0; - while (CONSP (obj)) - { - /* Detect circular list. */ - if (NILP (Vprint_circle)) - { - /* Simple but incomplete way. */ - if (i != 0 && EQ (obj, halftail)) - { - int len = sprintf (buf, " . #%"pMd, i / 2); - strout (buf, len, len, printcharfun); - goto end_of_list; - } - } - else - { - /* With the print-circle feature. */ - if (i != 0) - { - Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil); - if (INTEGERP (num)) - { - strout (" . ", 3, 3, printcharfun); - print_object (obj, printcharfun, escapeflag); - goto end_of_list; - } - } - } + printmax_t i = 0; + while (CONSP (obj)) + { + /* Detect circular list. */ + if (NILP (Vprint_circle)) + { + /* Simple but incomplete way. */ + if (i != 0 && EQ (obj, halftail)) + { + int len = sprintf (buf, " . #%"pMd, i / 2); + strout (buf, len, len, printcharfun); + goto end_of_list; + } + } + else + { + /* With the print-circle feature. */ + if (i != 0) + { + Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil); + if (INTEGERP (num)) + { + print_c_string (" . ", printcharfun); + print_object (obj, printcharfun, escapeflag); + goto end_of_list; + } + } + } - if (i) - PRINTCHAR (' '); + if (i) + printchar (' ', printcharfun); - if (print_length <= i) - { - strout ("...", 3, 3, printcharfun); - goto end_of_list; - } + if (print_length <= i) + { + print_c_string ("...", printcharfun); + goto end_of_list; + } - i++; - print_object (XCAR (obj), printcharfun, escapeflag); + i++; + print_object (XCAR (obj), printcharfun, escapeflag); - obj = XCDR (obj); - if (!(i & 1)) - halftail = XCDR (halftail); - } + obj = XCDR (obj); + if (!(i & 1)) + halftail = XCDR (halftail); } /* OBJ non-nil here means it's the end of a dotted list. */ if (!NILP (obj)) { - strout (" . ", 3, 3, printcharfun); + print_c_string (" . ", printcharfun); print_object (obj, printcharfun, escapeflag); } end_of_list: - PRINTCHAR (')'); + printchar (')', printcharfun); } break; @@ -1699,9 +1672,9 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) { if (escapeflag) { - strout ("#name, printcharfun); - PRINTCHAR ('>'); + printchar ('>', printcharfun); } else print_string (XPROCESS (obj)->name, printcharfun); @@ -1709,19 +1682,13 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) else if (BOOL_VECTOR_P (obj)) { ptrdiff_t i; - int len; unsigned char c; - struct gcpro gcpro1; EMACS_INT size = bool_vector_size (obj); ptrdiff_t size_in_chars = bool_vector_bytes (size); ptrdiff_t real_size_in_chars = size_in_chars; - GCPRO1 (obj); - PRINTCHAR ('#'); - PRINTCHAR ('&'); - len = sprintf (buf, "%"pI"d", size); + int len = sprintf (buf, "#&%"pI"d\"", size); strout (buf, len, len, printcharfun); - PRINTCHAR ('\"'); /* Don't print more characters than the specified maximum. Negative values of print-length are invalid. Treat them @@ -1735,70 +1702,57 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) QUIT; c = bool_vector_uchar_data (obj)[i]; if (c == '\n' && print_escape_newlines) - { - PRINTCHAR ('\\'); - PRINTCHAR ('n'); - } + print_c_string ("\\n", printcharfun); else if (c == '\f' && print_escape_newlines) - { - PRINTCHAR ('\\'); - PRINTCHAR ('f'); - } + print_c_string ("\\f", printcharfun); else if (c > '\177') { /* Use octal escapes to avoid encoding issues. */ - PRINTCHAR ('\\'); - PRINTCHAR ('0' + ((c >> 6) & 3)); - PRINTCHAR ('0' + ((c >> 3) & 7)); - PRINTCHAR ('0' + (c & 7)); + len = sprintf (buf, "\\%o", c); + strout (buf, len, len, printcharfun); } else { if (c == '\"' || c == '\\') - PRINTCHAR ('\\'); - PRINTCHAR (c); + printchar ('\\', printcharfun); + printchar (c, printcharfun); } } if (size_in_chars < real_size_in_chars) - strout (" ...", 4, 4, printcharfun); - PRINTCHAR ('\"'); - - UNGCPRO; + print_c_string (" ...", printcharfun); + printchar ('\"', printcharfun); } else if (SUBRP (obj)) { - strout ("#symbol_name, -1, -1, printcharfun); - PRINTCHAR ('>'); + print_c_string ("#symbol_name, printcharfun); + printchar ('>', printcharfun); } else if (WINDOWP (obj)) { - int len; - strout ("#sequence_number); + int len = sprintf (buf, "#sequence_number); strout (buf, len, len, printcharfun); if (BUFFERP (XWINDOW (obj)->contents)) { - strout (" on ", -1, -1, printcharfun); + print_c_string (" on ", printcharfun); print_string (BVAR (XBUFFER (XWINDOW (obj)->contents), name), printcharfun); } - PRINTCHAR ('>'); + printchar ('>', printcharfun); } else if (TERMINALP (obj)) { - int len; struct terminal *t = XTERMINAL (obj); - strout ("#id); + int len = sprintf (buf, "#id); strout (buf, len, len, printcharfun); if (t->name) { - strout (" on ", -1, -1, printcharfun); - strout (t->name, -1, -1, printcharfun); + print_c_string (" on ", printcharfun); + print_c_string (t->name, printcharfun); } - PRINTCHAR ('>'); + printchar ('>', printcharfun); } else if (HASH_TABLE_P (obj)) { @@ -1808,16 +1762,14 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) int len; #if 0 void *ptr = h; - strout ("#test)) { - PRINTCHAR (' '); - PRINTCHAR ('\''); - strout (SDATA (SYMBOL_NAME (h->test)), -1, -1, printcharfun); - PRINTCHAR (' '); - strout (SDATA (SYMBOL_NAME (h->weak)), -1, -1, printcharfun); - PRINTCHAR (' '); - len = sprintf (buf, "%"pD"d/%"pD"d", h->count, ASIZE (h->next)); + print_c_string (" '", printcharfun); + print_c_string (SSDATA (SYMBOL_NAME (h->test)), printcharfun); + printchar (' ', printcharfun); + print_c_string (SSDATA (SYMBOL_NAME (h->weak)), printcharfun); + len = sprintf (buf, " %"pD"d/%"pD"d", h->count, ASIZE (h->next)); strout (buf, len, len, printcharfun); } len = sprintf (buf, " %p>", ptr); @@ -1831,29 +1783,29 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) if (!NILP (h->test.name)) { - strout (" test ", -1, -1, printcharfun); + print_c_string (" test ", printcharfun); print_object (h->test.name, printcharfun, escapeflag); } if (!NILP (h->weak)) { - strout (" weakness ", -1, -1, printcharfun); + print_c_string (" weakness ", printcharfun); print_object (h->weak, printcharfun, escapeflag); } if (!NILP (h->rehash_size)) { - strout (" rehash-size ", -1, -1, printcharfun); + print_c_string (" rehash-size ", printcharfun); print_object (h->rehash_size, printcharfun, escapeflag); } if (!NILP (h->rehash_threshold)) { - strout (" rehash-threshold ", -1, -1, printcharfun); + print_c_string (" rehash-threshold ", printcharfun); print_object (h->rehash_threshold, printcharfun, escapeflag); } - strout (" data ", -1, -1, printcharfun); + print_c_string (" data ", printcharfun); /* Print the data here as a plist. */ real_size = HASH_TABLE_SIZE (h); @@ -1864,49 +1816,47 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) && XFASTINT (Vprint_length) < size) size = XFASTINT (Vprint_length); - PRINTCHAR ('('); + printchar ('(', printcharfun); for (i = 0; i < size; i++) if (!NILP (HASH_HASH (h, i))) { - if (i) PRINTCHAR (' '); + if (i) printchar (' ', printcharfun); print_object (HASH_KEY (h, i), printcharfun, escapeflag); - PRINTCHAR (' '); + printchar (' ', printcharfun); print_object (HASH_VALUE (h, i), printcharfun, escapeflag); } if (size < real_size) - strout (" ...", 4, 4, printcharfun); + print_c_string (" ...", printcharfun); - PRINTCHAR (')'); - PRINTCHAR (')'); + print_c_string ("))", printcharfun); } else if (BUFFERP (obj)) { if (!BUFFER_LIVE_P (XBUFFER (obj))) - strout ("#", -1, -1, printcharfun); + print_c_string ("#", printcharfun); else if (escapeflag) { - strout ("#'); + printchar ('>', printcharfun); } else print_string (BVAR (XBUFFER (obj), name), printcharfun); } else if (WINDOW_CONFIGURATIONP (obj)) - { - strout ("#", -1, -1, printcharfun); - } + print_c_string ("#", printcharfun); else if (FRAMEP (obj)) { int len; void *ptr = XFRAME (obj); Lisp_Object frame_name = XFRAME (obj)->name; - strout ((FRAME_LIVE_P (XFRAME (obj)) - ? "# FONT_WIDTH_INDEX) print_object (AREF (obj, i), printcharfun, escapeflag); else @@ -1942,18 +1892,18 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) } else { - strout ("#'); + printchar ('>', printcharfun); } else { ptrdiff_t size = ASIZE (obj); if (COMPILEDP (obj)) { - PRINTCHAR ('#'); + printchar ('#', printcharfun); size &= PSEUDOVECTOR_SIZE_MASK; } if (CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj)) @@ -1967,20 +1917,19 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) results in slow redisplay. */ if (SUB_CHAR_TABLE_P (obj) && XSUB_CHAR_TABLE (obj)->depth == 3) - PRINTCHAR ('\n'); - PRINTCHAR ('#'); - PRINTCHAR ('^'); + printchar ('\n', printcharfun); + print_c_string ("#^", printcharfun); if (SUB_CHAR_TABLE_P (obj)) - PRINTCHAR ('^'); + printchar ('^', printcharfun); size &= PSEUDOVECTOR_SIZE_MASK; } if (size & PSEUDOVECTOR_FLAG) goto badtype; - PRINTCHAR ('['); + printchar ('[', printcharfun); { int i, idx = SUB_CHAR_TABLE_P (obj) ? SUB_CHAR_TABLE_OFFSET : 0; - register Lisp_Object tem; + Lisp_Object tem; ptrdiff_t real_size = size; /* For a sub char-table, print heading non-Lisp data first. */ @@ -1998,14 +1947,14 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) for (i = idx; i < size; i++) { - if (i) PRINTCHAR (' '); + if (i) printchar (' ', printcharfun); tem = AREF (obj, i); print_object (tem, printcharfun, escapeflag); } if (size < real_size) - strout (" ...", 4, 4, printcharfun); + print_c_string (" ...", printcharfun); } - PRINTCHAR (']'); + printchar (']', printcharfun); } break; @@ -2013,26 +1962,25 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) switch (XMISCTYPE (obj)) { case Lisp_Misc_Marker: - strout ("#insertion_type != 0) - strout ("(moves after insertion) ", -1, -1, printcharfun); + print_c_string ("(moves after insertion) ", printcharfun); if (! XMARKER (obj)->buffer) - strout ("in no buffer", -1, -1, printcharfun); + print_c_string ("in no buffer", printcharfun); else { - int len = sprintf (buf, "at %"pD"d", marker_position (obj)); + int len = sprintf (buf, "at %"pD"d in ", marker_position (obj)); strout (buf, len, len, printcharfun); - strout (" in ", -1, -1, printcharfun); print_string (BVAR (XMARKER (obj)->buffer, name), printcharfun); } - PRINTCHAR ('>'); + printchar ('>', printcharfun); break; case Lisp_Misc_Overlay: - strout ("#buffer) - strout ("in no buffer", -1, -1, printcharfun); + print_c_string ("in no buffer", printcharfun); else { int len = sprintf (buf, "from %"pD"d to %"pD"d in ", @@ -2042,21 +1990,21 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) print_string (BVAR (XMARKER (OVERLAY_START (obj))->buffer, name), printcharfun); } - PRINTCHAR ('>'); + printchar ('>', printcharfun); break; case Lisp_Misc_Finalizer: - strout ("#function)) - strout (" used", -1, -1, printcharfun); - strout (">", -1, -1, printcharfun); + print_c_string (" used", printcharfun); + printchar ('>', printcharfun); break; /* Remaining cases shouldn't happen in normal usage, but let's print them anyway for the benefit of the debugger. */ case Lisp_Misc_Free: - strout ("#", -1, -1, printcharfun); + print_c_string ("#", printcharfun); break; case Lisp_Misc_Save_Value: @@ -2064,14 +2012,12 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) int i; struct Lisp_Save_Value *v = XSAVE_VALUE (obj); - strout ("#save_type == SAVE_TYPE_MEMORY) { ptrdiff_t amount = v->data[1].integer; -#if GC_MARK_STACK - /* valid_lisp_object_p is reliable, so try to print up to 8 saved objects. This code is rarely used, so it's OK that valid_lisp_object_p is slow. */ @@ -2087,27 +2033,15 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) Lisp_Object maybe = area[i]; int valid = valid_lisp_object_p (maybe); + printchar (' ', printcharfun); if (0 < valid) - { - PRINTCHAR (' '); - print_object (maybe, printcharfun, escapeflag); - } + print_object (maybe, printcharfun, escapeflag); else - strout (valid ? " " : " ", - -1, -1, printcharfun); + print_c_string (valid < 0 ? "" : "", + printcharfun); } if (i == limit && i < amount) - strout (" ...", 4, 4, printcharfun); - -#else /* not GC_MARK_STACK */ - - /* There is no reliable way to determine whether the objects - are initialized, so do not try to print them. */ - - i = sprintf (buf, "with %"pD"d objects", amount); - strout (buf, i, i, printcharfun); - -#endif /* GC_MARK_STACK */ + print_c_string (" ...", printcharfun); } else { @@ -2116,7 +2050,7 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) for (index = 0; index < SAVE_VALUE_SLOTS; index++) { if (index) - PRINTCHAR (' '); + printchar (' ', printcharfun); switch (save_type (v, index)) { @@ -2152,7 +2086,7 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) strout (buf, i, i, printcharfun); } } - PRINTCHAR ('>'); + printchar ('>', printcharfun); } break; @@ -2167,16 +2101,17 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) int len; /* We're in trouble if this happens! Probably should just emacs_abort (). */ - strout ("#", - -1, -1, printcharfun); + print_c_string ((" Save your buffers immediately" + " and please report this bug>"), + printcharfun); } } @@ -2192,12 +2127,12 @@ print_interval (INTERVAL interval, Lisp_Object printcharfun) { if (NILP (interval->plist)) return; - PRINTCHAR (' '); + printchar (' ', printcharfun); print_object (make_number (interval->position), printcharfun, 1); - PRINTCHAR (' '); + printchar (' ', printcharfun); print_object (make_number (interval->position + LENGTH (interval)), printcharfun, 1); - PRINTCHAR (' '); + printchar (' ', printcharfun); print_object (interval->plist, printcharfun, 1); } @@ -2245,7 +2180,6 @@ decimal point. 0 is not allowed with `e' or `g'. A value of nil means to use the shortest notation that represents the number without losing information. */); Vfloat_output_format = Qnil; - DEFSYM (Qfloat_output_format, "float-output-format"); DEFVAR_LISP ("print-length", Vprint_length, doc: /* Maximum length of list to print before abbreviating. @@ -2264,7 +2198,7 @@ Also print formfeeds as `\\f'. */); DEFVAR_BOOL ("print-escape-nonascii", print_escape_nonascii, doc: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO. -\(OOO is the octal representation of the character code.) +(OOO is the octal representation of the character code.) Only single-byte characters are affected, and only in `prin1'. When the output goes in a multibyte buffer, this feature is enabled regardless of the value of the variable. */); @@ -2272,13 +2206,13 @@ enabled regardless of the value of the variable. */); DEFVAR_BOOL ("print-escape-multibyte", print_escape_multibyte, doc: /* Non-nil means print multibyte characters in strings as \\xXXXX. -\(XXXX is the hex representation of the character code.) +(XXXX is the hex representation of the character code.) This affects only `prin1'. */); print_escape_multibyte = 0; DEFVAR_BOOL ("print-quoted", print_quoted, doc: /* Non-nil means print quoted forms with reader syntax. -I.e., (quote foo) prints as 'foo, (function foo) as #'foo. */); +I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */); print_quoted = 0; DEFVAR_LISP ("print-gensym", Vprint_gensym,