mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-29 16:25:35 +01:00
unposted: Followup to 36586: Change C99 comment syntax to the C89 syntax.
This commit is contained in:
parent
002d68525c
commit
1b5987cdb1
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-09-23 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||
|
||||
* unposted: Src/Zle/compmatch.c: Followup to 36586: Change C99
|
||||
comment syntax to the C89 syntax.
|
||||
|
||||
2015-09-23 Mikael Magnusson <mikachu@gmail.com>
|
||||
|
||||
* Eric Cook: 36571: Completion/Linux/Command/_losetup,
|
||||
|
|
|
@ -820,11 +820,11 @@ match_str(char *l, char *w, Brinfo *bpp, int bc, int *rwlp,
|
|||
continue;
|
||||
else if (mp->right)
|
||||
t = pattern_match(mp->right,
|
||||
//tl + mp->llen - mp->ralen,
|
||||
/* tl + mp->llen - mp->ralen, */
|
||||
tl + mp->llen,
|
||||
NULL, NULL) &&
|
||||
pattern_match(mp->right,
|
||||
//tw + mp->wlen - mp->ralen,
|
||||
/* tw + mp->wlen - mp->ralen, */
|
||||
tw + mp->wlen,
|
||||
NULL, NULL) &&
|
||||
(!mp->lalen ||
|
||||
|
|
Loading…
Reference in a new issue