mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
(print_object): Always print ASCII chars as is.
This commit is contained in:
parent
473ad4a5aa
commit
73af357ad7
1 changed files with 2 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue