unibyte_display_via_language_environment is zero, display 8-bit
chars in octal in unibyte buffer.
+2004-10-12 Kenichi Handa <handa@m17n.org>
+
+ * xdisp.c (get_next_display_element): If
+ unibyte_display_via_language_environment is zero, display 8-bit
+ chars in octal in unibyte buffer.
+
2004-10-12 Kim F. Storm <storm@cua.dk>
* doc.c (Fsubstitute_command_keys): Ignore remappings unless there
&& 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 '^'