]> git.eshelyaron.com Git - emacs.git/commitdiff
(print_object): Always print ASCII chars as is.
authorKenichi Handa <handa@m17n.org>
Mon, 17 Nov 2003 23:48:44 +0000 (23:48 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 17 Nov 2003 23:48:44 +0000 (23:48 +0000)
src/print.c

index c8e66095110de911981c936c7ece946d7ec6a1f2..1ded6c56674863467ea1a9e75c9e3e422d8c27b3 100644 (file)
@@ -1452,7 +1452,8 @@ print_object (obj, printcharfun, escapeflag)
                  PRINTCHAR ('f');
                }
              else if (multibyte
-                      && (CHAR_BYTE8_P (c) || print_escape_multibyte))
+                      && (CHAR_BYTE8_P (c) 
+                          || (! ASCII_CHAR_P (c) && print_escape_multibyte)))
                {
                  /* When multibyte is disabled,
                     print multibyte string chars using hex escapes.