Mercurial > emacs
changeset 99982:b24acf112b98
(print_object): For bool-vector, delete unnecessary
check of ASCII_BYTE_P.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 27 Nov 2008 08:02:15 +0000 |
parents | ec7ddeda2233 |
children | 3634b7edab06 |
files | src/print.c |
diffstat | 1 files changed, 1 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/print.c Thu Nov 27 08:02:02 2008 +0000 +++ b/src/print.c Thu Nov 27 08:02:15 2008 +0000 @@ -1968,12 +1968,7 @@ { QUIT; c = XBOOL_VECTOR (obj)->data[i]; - if (! ASCII_BYTE_P (c)) - { - sprintf (buf, "\\%03o", c); - strout (buf, -1, -1, printcharfun, 0); - } - else if (c == '\n' && print_escape_newlines) + if (c == '\n' && print_escape_newlines) { PRINTCHAR ('\\'); PRINTCHAR ('n');