]> git.eshelyaron.com Git - emacs.git/commitdiff
(print_string): Remove CHAR_VALID_P test.
authorDave Love <fx@gnu.org>
Tue, 16 Jul 2002 22:30:36 +0000 (22:30 +0000)
committerDave Love <fx@gnu.org>
Tue, 16 Jul 2002 22:30:36 +0000 (22:30 +0000)
src/print.c

index b79f2fc35029a1346589160f20bd40cca825cb27..7a900a108c1fef558bcef1d1a2767ef938f353d8 100644 (file)
@@ -514,11 +514,6 @@ print_string (string, printcharfun)
            int len;
            int ch = STRING_CHAR_AND_LENGTH (XSTRING (string)->data + i,
                                             size_byte - i, len);
-           if (!CHAR_VALID_P (ch, 0))
-             {
-               ch = XSTRING (string)->data[i];
-               len = 1;
-             }
            PRINTCHAR (ch);
            i += len;
          }