diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-04-17 14:55:15 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-04-17 14:55:15 +0000 |
commit | 0e58658d4a04f038c0b2b2f485c58a252a1aa684 (patch) | |
tree | 27b4dc980e6ba070d0b1c6be5c38ef28678005ae /Src/Zle | |
parent | 25bb07b80e026f2d1e2a7656a6a29ca9b3686b0e (diff) | |
download | zsh-0e58658d4a04f038c0b2b2f485c58a252a1aa684.tar.gz zsh-0e58658d4a04f038c0b2b2f485c58a252a1aa684.tar.xz zsh-0e58658d4a04f038c0b2b2f485c58a252a1aa684.zip |
users/11421: %{...%} was broken in completion listings
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/complist.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c index 40bfdfe05..cedccc254 100644 --- a/Src/Zle/complist.c +++ b/Src/Zle/complist.c @@ -1046,13 +1046,11 @@ compprintfmt(char *fmt, int n, int dopr, int doesc, int ml, int *stop) tcout(TCUNDERLINEEND); break; case ZWC('{'): - for (p++; *p && (*p != '%' || p[1] != '}'); p++) + for (; *p && (*p != '%' || p[1] != '}'); p++) if (dopr) putc(*p == Meta ? *++p ^ 32 : *p, shout); if (*p) - p++; - else - p--; + p += 2; break; case ZWC('m'): if (stat) { |