all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: File names with accented Latin characters are not displayed correctly
       [not found] ` <0ed07c7b9fe05cb0334850bba636bd40@Web.DE>
@ 2005-11-19  1:51   ` Kenichi Handa
  2005-11-19 10:04     ` Peter Dyballa
  0 siblings, 1 reply; 3+ messages in thread
From: Kenichi Handa @ 2005-11-19  1:51 UTC (permalink / raw
  Cc: emacs-pretest-bug, emacs-devel

In article <0ed07c7b9fe05cb0334850bba636bd40@Web.DE>, Peter Dyballa <Peter_Dyballa@Web.DE> writes:

>>  When I use 'ls -lw' to display the file names in xterm, I get:
>> 
>>  	-rw-r--r--    1 pete  pete        62 25 Mär  2005 áÛïǓà.txt
>>  	-rw-r--r--    1 pete  pete        62 25 Mär  2005 äÖüÄöÜ.txt
>>  	-rw-r--r--    1 pete  pete       107  2 Dez  2004 äöüßÜÖÄ€
>>  	
>>  Doing the same in Emacs' *shell* buffer I get:
>> 
>>  	-rw-r--r--    1 pete  pete        62 25 Mär  2005 áÛïǓà.txt
>>  	-rw-r--r--    1 pete  pete        62 25 Mär  2005 äÖüÄöÜ.txt
>>  	-rw-r--r--    1 pete  pete       107  2 Dez  2004 äöüßÜÖÄ€

You are using Unicode Emacs on Mac Darwin.  I heard that all
file names on that system are treated in a decomposed form
(normalization form NFD or NFKD, see UAX15 of Unicode).

But, currently emacs doesn't have a converter between each
normalization form.  So, a-umlaut in a file name is actually
the two characters seqeunce "a" and "umlaut" (U+0308) on
that system, but when you type that character in Emacs,
Emacs produces U+00E4.

[...]
> OK, now an explanation is given: no font. The question is: do I need to 
> supply a font? If so: how? Hitting C-h v on that 
> `reference-point-alist' gives a reference to a variable (I think: too 
> big to cite it here) defined in `composite'. There I found a reference 
> to the function toggle-auto-composition. When I apply this function to 
> the *Buffers List* I can see that it "changes" one file name: obviously 
> one which is the exact copy of the entry in dired-mode!

You said that Emacs used to show those characters in an ugly
but correct way, and stopped displaying in that way
recently.  I think that is because some font/fontset related
code was changed for Mac recently, and I have no idea why
Emacs can't find a correct font on Mac now.  Could someone
who is working on Mac port help him?

> And I now recognised too that I when I open a file with the ä in the 
> name, it appears in mode-line correct. In the pop-up buffers menu I see 
> its name printed in normal UTF-8 representation, i.e. C3 A4 = ä. OK, I 
> can guess the right name. When I open such a file from dired-mode by 
> pressing the mouse, the ä is represented by a hollow box in the 
> mode-line. This hollow box is "translated" in pop-up buffers menu to 
> "Ì▢." OK, I am cheating a bit: when I open the file with C-x f or 
> change any name to a name with ä, then the name is correct in 
> mode-line. In *Buffer List* this name is displayed correctly too. The 
> other file name, which I open 'with the mouse,' has the de-composed ä 
> glyph which is described by C-u C-x = as the ä in dired mode. And in 
> this file name I can toggle the representation between "a" and "a▢" -- 
> but no change in pop-up buffers menu!

All those confusions are because of normalization form used
on your system.  Emacs and the system don't agree with file
name encoding.

Mr. Kawabata is now working on implementing converters
between all normalization forms.  He has already finished
writing a code, sent assignment paper to FSF, and is now
waiting for a reply.  As soon as his contribution is
accepted, I'll install it.  Then I think you problem is
solved.

---
Kenichi Handa
handa@m17n.org

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: File names with accented Latin characters are not displayed correctly
  2005-11-19  1:51   ` File names with accented Latin characters are not displayed correctly Kenichi Handa
@ 2005-11-19 10:04     ` Peter Dyballa
  2005-11-20  1:17       ` Kenichi Handa
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Dyballa @ 2005-11-19 10:04 UTC (permalink / raw
  Cc: emacs-pretest-bug, emacs-devel


Am 19.11.2005 um 02:51 schrieb Kenichi Handa:

> Mr. Kawabata is now working on implementing converters
> between all normalization forms.  He has already finished
> writing a code, sent assignment paper to FSF, and is now
> waiting for a reply.  As soon as his contribution is
> accepted, I'll install it.  Then I think you problem is
> solved.
>

This day could be close to Imperial Day and Christmas falling on the 
same day!

Is Kawabata-san's code useful in improving GNU Emacs 22 too? There is 
something needed for this too ...

--
Greetings

   Pete

Time flies like an error
but fruit flies like a banana

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: File names with accented Latin characters are not displayed correctly
  2005-11-19 10:04     ` Peter Dyballa
@ 2005-11-20  1:17       ` Kenichi Handa
  0 siblings, 0 replies; 3+ messages in thread
From: Kenichi Handa @ 2005-11-20  1:17 UTC (permalink / raw
  Cc: emacs-pretest-bug, emacs-devel

In article <78d15ef37906afe015eb9c4f25111d12@Web.DE>, Peter Dyballa <Peter_Dyballa@Web.DE> writes:

>>  Mr. Kawabata is now working on implementing converters
>>  between all normalization forms.  He has already finished
>>  writing a code, sent assignment paper to FSF, and is now
>>  waiting for a reply.  As soon as his contribution is
>>  accepted, I'll install it.  Then I think you problem is
>>  solved.

> This day could be close to Imperial Day and Christmas falling on the 
> same day!

> Is Kawabata-san's code useful in improving GNU Emacs 22 too? There is 
> something needed for this too ...

As I have not yet checked his code, I don't know.  But I
suspect that his code assumes that Emacs can handle all
Unicode characters and that is not true for Emacs 22, which
means we need fairly amount of extra work to make it work
also on Emacs 22.

---
Kenichi Handa
handa@m17n.org

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-11-20  1:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <4a688eb6976fe19f639d8ae0fec0126d@Web.DE>
     [not found] ` <0ed07c7b9fe05cb0334850bba636bd40@Web.DE>
2005-11-19  1:51   ` File names with accented Latin characters are not displayed correctly Kenichi Handa
2005-11-19 10:04     ` Peter Dyballa
2005-11-20  1:17       ` Kenichi Handa

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.