(print_object): For bool-vector, delete unnecessary
authorKenichi Handa <handa@m17n.org>
Thu, 27 Nov 2008 08:02:15 +0000 (08:02 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 27 Nov 2008 08:02:15 +0000 (08:02 +0000)
check of ASCII_BYTE_P.

src/print.c

index 90b4649..a4a214a 100644 (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');