aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2003-11-17 23:48:44 +0000
committerKenichi Handa2003-11-17 23:48:44 +0000
commit73af357ad793166f8d408c763527d93ab0c6ed9f (patch)
treeff52bc262e96754e8d45ce0c3a70e5de6cb23aaf /src
parent473ad4a5aad77d98c9919da46d9fbea7cbb8de2d (diff)
downloademacs-73af357ad793166f8d408c763527d93ab0c6ed9f.tar.gz
emacs-73af357ad793166f8d408c763527d93ab0c6ed9f.zip
(print_object): Always print ASCII chars as is.
Diffstat (limited to 'src')
-rw-r--r--src/print.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index c8e66095110..1ded6c56674 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1452,7 +1452,8 @@ print_object (obj, printcharfun, escapeflag)
1452 PRINTCHAR ('f'); 1452 PRINTCHAR ('f');
1453 } 1453 }
1454 else if (multibyte 1454 else if (multibyte
1455 && (CHAR_BYTE8_P (c) || print_escape_multibyte)) 1455 && (CHAR_BYTE8_P (c)
1456 || (! ASCII_CHAR_P (c) && print_escape_multibyte)))
1456 { 1457 {
1457 /* When multibyte is disabled, 1458 /* When multibyte is disabled,
1458 print multibyte string chars using hex escapes. 1459 print multibyte string chars using hex escapes.