From: Dave Love Date: Tue, 16 Jul 2002 22:30:36 +0000 (+0000) Subject: (print_string): Remove CHAR_VALID_P test. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~561 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fd3aa3e1b9dada9e28c371db10ec0a89b9d069ed;p=emacs.git (print_string): Remove CHAR_VALID_P test. --- 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; }