From fd3aa3e1b9dada9e28c371db10ec0a89b9d069ed Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 16 Jul 2002 22:30:36 +0000 Subject: [PATCH] (print_string): Remove CHAR_VALID_P test. --- src/print.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/print.c b/src/print.c index b79f2fc3502..7a900a108c1 100644 --- a/src/print.c +++ b/src/print.c @@ -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; } -- 2.39.5