Your message dated Thu, 1 Jan 2009 18:10:46 +0100
with message-id <[email protected]>
and subject line bug triage
has caused the Debian Bug report #374913,
regarding zsh: Completion should handle combining accents equivalents
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
374913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=374913
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: zsh
Version: 4.3.2-12
Severity: minor
Hi,
If I create a directory named héhé (e with combining acute accent),
and then try to complete hé into it (here é is the precombined form),
libreadline does not take care that é (e with combining acute accent) is
equivalent to é (the precombined "e with acute accent" character).
libreadline should use some unicode normal form on completion.
Samuel
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (900, 'unstable'), (500, 'testing'), (500, 'stable'), (1,
'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Versions of packages zsh depends on:
ii debconf [debconf-2.0] 1.5.2 Debian configuration management sy
ii libc6 2.3.6-15 GNU C Library: Shared libraries
ii libncurses5 5.5-2 Shared libraries for terminal hand
Versions of packages zsh recommends:
ii libcap1 1:1.10-14 support for getting/setting POSIX.
ii libpcre3 6.4-2 Perl 5 Compatible Regular Expressi
-- debconf information excluded
--
Samuel Thibault <[email protected]>
<D> m'enfin, le 5 juillet, le mec vient visiter le labo...
* D a marque d'une croix rouge le 5 juillet sur son agenda
<y> niarc niarc niarc
<D> cet homme va souffrir
<B> c'est donc le 5 juillet qu'il meurt d'un accident de la route écrasé par un
truck muni d'un pare buffle
-+- #ens-mim - repaire de terroristes -+-
--- End Message ---
--- Begin Message ---
Version: 4.3.6-7
As the file system considers them to be different, the shell
_must_ treat them as different, as well.
Completion does what Zsh currently does with those
'modify the char before me' pseudo-chars in Unicode:
Play it safe and display their <number>.
ric...@roadwarrior ~/killme/unicode % touch héhé
ric...@roadwarrior ~/killme/unicode % ls
héhé
ric...@roadwarrior ~/killme/unicode % touch "`echo e\\\u300`"
ric...@roadwarrior ~/killme/unicode % ls
e héhé
ric...@roadwarrior ~/killme/unicode % touch "`echo \\\ue8`"
ric...@roadwarrior ~/killme/unicode % ls <tab>
e è héhé
ric...@roadwarrior ~/killme/unicode % ls <tab>
ric...@roadwarrior ~/killme/unicode % ls e<0300><tab>
ric...@roadwarrior ~/killme/unicode % ls è<tab>
ric...@roadwarrior ~/killme/unicode % ls héhé<tab>
--- End Message ---