mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-13 13:41:01 +02:00
Phil Pennock: 23480: typo
Also typo in mod_stat.yo
This commit is contained in:
parent
73ecf47a4f
commit
a755310d20
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-05-29 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
|
* unposted: Doc/Zsh/mod_stat.yo: typo.
|
||||||
|
|
||||||
|
* Phil Pennock: 23480: Src/parse.c: typo in =~ handling.
|
||||||
|
|
||||||
2007-05-28 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
2007-05-28 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
* Not posted but see 23479:Completion/Unix/Command/_chmod,
|
* Not posted but see 23479:Completion/Unix/Command/_chmod,
|
||||||
|
|
|
@ -11,7 +11,7 @@ cindex(files, examining)
|
||||||
xitem(tt(zstat) [ tt(-gnNolLtTrs) ] [ tt(-f) var(fd) ] \
|
xitem(tt(zstat) [ tt(-gnNolLtTrs) ] [ tt(-f) var(fd) ] \
|
||||||
[ tt(-H) var(hash) ] [ tt(-A) var(array) ] \
|
[ tt(-H) var(hash) ] [ tt(-A) var(array) ] \
|
||||||
[ tt(-F) var(fmt) ] [ tt(PLUS())var(element) ] [ var(file) ... ])
|
[ tt(-F) var(fmt) ] [ tt(PLUS())var(element) ] [ var(file) ... ])
|
||||||
itme(tt(stat) var(...))(
|
item(tt(stat) var(...))(
|
||||||
The command acts as a front end to the tt(stat) system call (see
|
The command acts as a front end to the tt(stat) system call (see
|
||||||
manref(stat)(2)). The same command is provided with two names; as
|
manref(stat)(2)). The same command is provided with two names; as
|
||||||
the name tt(stat) is often used by an external command it is recommended
|
the name tt(stat) is often used by an external command it is recommended
|
||||||
|
|
|
@ -2125,7 +2125,7 @@ par_cond_triple(char *a, char *b, char *c)
|
||||||
ecstr(c);
|
ecstr(c);
|
||||||
ecadd(ecnpats++);
|
ecadd(ecnpats++);
|
||||||
} else if ((b[0] == Equals || b[0] == '=') &&
|
} else if ((b[0] == Equals || b[0] == '=') &&
|
||||||
(b[1] == '~' || b[1] == Tilde) && ~b[2]) {
|
(b[1] == '~' || b[1] == Tilde) && !b[2]) {
|
||||||
ecadd(WCB_COND(COND_REGEX, 0));
|
ecadd(WCB_COND(COND_REGEX, 0));
|
||||||
ecstr(a);
|
ecstr(a);
|
||||||
ecstr(c);
|
ecstr(c);
|
||||||
|
|
Loading…
Reference in a new issue