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

Phil Pennock: 23480: typo

Also typo in mod_stat.yo
This commit is contained in:
Peter Stephenson 2007-05-29 09:27:43 +00:00
parent 73ecf47a4f
commit a755310d20
3 changed files with 8 additions and 2 deletions

View file

@ -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>
* Not posted but see 23479:Completion/Unix/Command/_chmod,

View file

@ -11,7 +11,7 @@ cindex(files, examining)
xitem(tt(zstat) [ tt(-gnNolLtTrs) ] [ tt(-f) var(fd) ] \
[ tt(-H) var(hash) ] [ tt(-A) var(array) ] \
[ 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
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

View file

@ -2125,7 +2125,7 @@ par_cond_triple(char *a, char *b, char *c)
ecstr(c);
ecadd(ecnpats++);
} 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));
ecstr(a);
ecstr(c);