Mercurial > emacs
changeset 89630:1961cc2af44d
(print_object): Always print ASCII chars as is.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 17 Nov 2003 23:48:44 +0000 |
parents | 5e12f0bce446 |
children | 2c98f3699a65 |
files | src/print.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/print.c Mon Nov 17 03:58:13 2003 +0000 +++ b/src/print.c Mon Nov 17 23:48:44 2003 +0000 @@ -1452,7 +1452,8 @@ 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.