aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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.