diff options
Diffstat (limited to 'Src')
-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) { |