[Pkg-zsh-devel] Bug#654225: PATCH: Restore `LC_ALL' when setting `LANG'
Frank Terbeck
ft at bewatermyfriend.org
Tue Jan 3 15:26:44 UTC 2012
(Cc:ing Upstream)
When setting LANG, zsh sets LC_ALL and then goes on to restore all
interesting LC_* values after that. Up to now, it did not restore LC_ALL
itself, though.
That could lead to trouble when setting LC_ALL=something-utf8-ish and
after that LANG=something-non-utf8.
This was reported in Debian bugreport #654225:
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654225>
A recipe to reproduce the issue is here:
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654225#65>
I think the patch below fixes the issue correctly, by restoring LC_ALL
from its parameter along the way with all the other LC_* values zsh
cares about.
(FWIW, the test-suite still passes with this change.)
Regards, Frank
---
Src/params.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Src/params.c b/Src/params.c
index 446cccc..6d98b8e 100644
--- a/Src/params.c
+++ b/Src/params.c
@@ -3780,6 +3780,9 @@ static struct localename {
#ifdef LC_TIME
{"LC_TIME", LC_TIME},
#endif
+#ifdef LC_ALL
+ {"LC_ALL", LC_ALL},
+#endif
{NULL, 0}
};
--
1.7.8.rc3.17.gf56ef1
More information about the Pkg-zsh-devel
mailing list