aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-07-16 22:30:36 +0000
committerDave Love2002-07-16 22:30:36 +0000
commitfd3aa3e1b9dada9e28c371db10ec0a89b9d069ed (patch)
treececb5fe2f511d46f8bd72a9773a3d0d0f29efe6b
parent28c026cdc9c55fa6754335135f21d91c62857db6 (diff)
downloademacs-fd3aa3e1b9dada9e28c371db10ec0a89b9d069ed.tar.gz
emacs-fd3aa3e1b9dada9e28c371db10ec0a89b9d069ed.zip
(print_string): Remove CHAR_VALID_P test.
-rw-r--r--src/print.c5
1 files changed, 0 insertions, 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)
514 int len; 514 int len;
515 int ch = STRING_CHAR_AND_LENGTH (XSTRING (string)->data + i, 515 int ch = STRING_CHAR_AND_LENGTH (XSTRING (string)->data + i,
516 size_byte - i, len); 516 size_byte - i, len);
517 if (!CHAR_VALID_P (ch, 0))
518 {
519 ch = XSTRING (string)->data[i];
520 len = 1;
521 }
522 PRINTCHAR (ch); 517 PRINTCHAR (ch);
523 i += len; 518 i += len;
524 } 519 }