mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-06 08:54:05 +00:00
(get_next_display_element): If
unibyte_display_via_language_environment is zero, display 8-bit chars in octal in unibyte buffer.
This commit is contained in:
parent
5e2e859aee
commit
170b174cae
@ -1,3 +1,9 @@
|
||||
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
|
||||
|
@ -4897,7 +4897,8 @@ get_next_display_element (it)
|
||||
&& 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 '^'
|
||||
|
Loading…
Reference in New Issue
Block a user