From 0e58658d4a04f038c0b2b2f485c58a252a1aa684 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 17 Apr 2007 14:55:15 +0000 Subject: users/11421: %{...%} was broken in completion listings --- Src/Zle/complist.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'Src') 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) { -- cgit 1.4.1