(print_object): For bool-vector, delete unnecessary

check of ASCII_BYTE_P.
This commit is contained in:
Kenichi Handa 2008-11-27 08:02:15 +00:00
parent bed6185fec
commit f10fdbfd42

View file

@ -1968,12 +1968,7 @@ print_object (obj, printcharfun, escapeflag)
{
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');