1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-03 10:21:46 +02:00

30079: Src/params.c: Restore LC_ALL' when setting LANG'.

This commit is contained in:
Frank Terbeck 2012-01-04 22:35:55 +00:00
parent 731877dd78
commit 1a330ad751
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-01-04 Frank Terbeck <ft@bewatermyfriend.org>
* 30079: Src/params.c: Restore `LC_ALL' when setting `LANG'.
2012-01-04 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30084: Src/init.c: zsfree(argzero) before we set it again
@ -15815,5 +15819,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5553 $
* $Revision: 1.5554 $
*****************************************************

View file

@ -3779,6 +3779,9 @@ static struct localename {
#endif
#ifdef LC_TIME
{"LC_TIME", LC_TIME},
#endif
#ifdef LC_ALL
{"LC_ALL", LC_ALL},
#endif
{NULL, 0}
};