diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2007-05-14 09:25:30 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-05-14 09:25:30 +0000 |
| commit | 3be3ca88057e8e735f4b931ad9177cb5aba97271 (patch) | |
| tree | f50ec2d0874fbd265c7517b88060d726cf2975e8 | |
| parent | 23435: Nikloai Weibull: bug testing end of string for sorting when ignoring (diff) | |
| download | zsh-3be3ca88057e8e735f4b931ad9177cb5aba97271.tar zsh-3be3ca88057e8e735f4b931ad9177cb5aba97271.tar.gz zsh-3be3ca88057e8e735f4b931ad9177cb5aba97271.tar.bz2 zsh-3be3ca88057e8e735f4b931ad9177cb5aba97271.tar.lz zsh-3be3ca88057e8e735f4b931ad9177cb5aba97271.tar.xz zsh-3be3ca88057e8e735f4b931ad9177cb5aba97271.tar.zst zsh-3be3ca88057e8e735f4b931ad9177cb5aba97271.zip | |
23437: typo noted by Wayne
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Src/params.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2007-05-14 Peter Stephenson <pws@csr.com> + + * Noted by Wayne: 23437; Src/params.c: typo in 23436. + 2007-05-13 Peter Stephenson <p.w.stephenson@ntlworld.com> * 23435: Nikolai Weibull: Src/sort.c: bug testing for end diff --git a/Src/params.c b/Src/params.c index 4a813a089..ed8b4a412 100644 --- a/Src/params.c +++ b/Src/params.c @@ -3471,7 +3471,7 @@ lcsetfn(Param pm, char *x) struct localename *ln; strsetfn(pm, x); - if ((x2 = getsparam("LC_ALL")) && *x) + if ((x2 = getsparam("LC_ALL")) && *x2) return; queue_signals(); /* Treat empty LC_* the same as unset. */ |
