# HG changeset patch # User Kenichi Handa # Date 1097566626 0 # Node ID 83bc7d52bd6ccfa7f18b5fad611e140ed8826cf1 # Parent 66a36bee0b1f639b8c01000b7aae75caf067a334 (get_next_display_element): If unibyte_display_via_language_environment is zero, display 8-bit chars in octal in unibyte buffer. diff -r 66a36bee0b1f -r 83bc7d52bd6c src/xdisp.c --- a/src/xdisp.c Tue Oct 12 05:26:29 2004 +0000 +++ b/src/xdisp.c Tue Oct 12 07:37:06 2004 +0000 @@ -4897,7 +4897,8 @@ && it->len == 1) || !CHAR_PRINTABLE_P (it->c)) : (it->c >= 127 - && it->c == unibyte_char_to_multibyte (it->c)))) + && (!unibyte_display_via_language_environment + || it->c == unibyte_char_to_multibyte (it->c))))) { /* IT->c is a control character which must be displayed either as '\003' or as `^C' where the '\\' and '^'