mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 00:31:07 +02:00
30079: Src/params.c: Restore LC_ALL' when setting
LANG'.
This commit is contained in:
parent
731877dd78
commit
1a330ad751
2 changed files with 8 additions and 1 deletions
|
@ -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>
|
2012-01-04 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
* 30084: Src/init.c: zsfree(argzero) before we set it again
|
* 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
|
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||||
* $Revision: 1.5553 $
|
* $Revision: 1.5554 $
|
||||||
*****************************************************
|
*****************************************************
|
||||||
|
|
|
@ -3779,6 +3779,9 @@ static struct localename {
|
||||||
#endif
|
#endif
|
||||||
#ifdef LC_TIME
|
#ifdef LC_TIME
|
||||||
{"LC_TIME", LC_TIME},
|
{"LC_TIME", LC_TIME},
|
||||||
|
#endif
|
||||||
|
#ifdef LC_ALL
|
||||||
|
{"LC_ALL", LC_ALL},
|
||||||
#endif
|
#endif
|
||||||
{NULL, 0}
|
{NULL, 0}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue