[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: displaying 8bit characters octal sequences
From: |
Kenichi Handa |
Subject: |
Re: displaying 8bit characters octal sequences |
Date: |
Tue, 12 Oct 2004 16:38:27 +0900 (JST) |
User-agent: |
SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/21.3 (sparc-sun-solaris2.6) MULE/5.0 (SAKAKI) |
In article <address@hidden>, address@hidden (Kim F. Storm) writes:
> Stefan <address@hidden> writes:
>> ..... yes, now I remember ..... someone changed the default display of
>> eight-bit-graphic chars: in multibyte buffers it's as before
>> (i.e. octal sequences), but in unibyte buffers they're displayed as
>> you're seeing them (i.e. as which ever glyph your default font chose for
>> those non-ascii chars).
>>
>> Kim did you do this change?
> Not on purpose.
> I think Handa did it:
> 2002-08-27 Kenichi Handa <address@hidden>
> * xdisp.c (get_next_display_element): In unibyte case, don't use
> octal form for such eight-bit characters that can be converted to
> multibyte char.
I don't remember well :-(, but it seems that the change is
to make unibyte-display-via-language-environment work
without setting up standard-display-table. I've just
installed the attached patch. Now
M-: (standard-display-default 128 255) RET
should work.
---
Ken'ichi HANDA
address@hidden
2004-10-12 Kenichi Handa <address@hidden>
* xdisp.c (get_next_display_element): If
unibyte_display_via_language_environment is zero, display 8-bit
chars in octal in unibyte buffer.
*** xdisp.c 30 Sep 2004 10:23:04 +0900 1.911
--- xdisp.c 12 Oct 2004 16:11:49 +0900
***************
*** 4895,4901 ****
&& it->len == 1)
|| !CHAR_PRINTABLE_P (it->c))
: (it->c >= 127
! && 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 '^'
--- 4895,4902 ----
&& it->len == 1)
|| !CHAR_PRINTABLE_P (it->c))
: (it->c >= 127
! && (!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 '^'
- Re: displaying 8bit characters octal sequences, (continued)
- Re: displaying 8bit characters octal sequences, Roland Winkler, 2004/10/10
- Re: displaying 8bit characters octal sequences, Stefan, 2004/10/11
- Re: displaying 8bit characters octal sequences, Roland Winkler, 2004/10/11
- Re: displaying 8bit characters octal sequences, Stefan, 2004/10/11
- Re: displaying 8bit characters octal sequences, Roland Winkler, 2004/10/11
- Re: displaying 8bit characters octal sequences, Stefan Monnier, 2004/10/11
- Re: displaying 8bit characters octal sequences, Roland Winkler, 2004/10/11
- Re: displaying 8bit characters octal sequences, Stefan Monnier, 2004/10/12
- Re: displaying 8bit characters octal sequences, Stefan Monnier, 2004/10/11
- Re: displaying 8bit characters octal sequences, Kim F. Storm, 2004/10/11
- Re: displaying 8bit characters octal sequences,
Kenichi Handa <=
- Re: displaying 8bit characters octal sequences, Roland Winkler, 2004/10/13
- Re: displaying 8bit characters octal sequences, Richard Stallman, 2004/10/12