From 6c78ce042d4f56e60faf380c8312310cb03906ea Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Mon, 27 Jan 2003 16:39:25 +0000 Subject: 18144: allow %{ %} to put bounds around a prompt truncation. --- Src/prompt.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Src/prompt.c b/Src/prompt.c index 762daf2c1..ac96ad340 100644 --- a/Src/prompt.c +++ b/Src/prompt.c @@ -93,6 +93,10 @@ static int trunclen; static int dontcount; +/* Level of %{ / %} surrounding a truncation segment. */ + +static int trunccount; + /* Strings to use for %r and %R (for the spelling prompt). */ static char *rstring, *Rstring; @@ -465,6 +469,8 @@ putpromptchar(int doprint, int endchar) } break; case /*{*/ '}': + if (trunccount && trunccount >= dontcount) + return *fm; if (dontcount && !--dontcount) { addbufspc(1); *bp++ = Outpar; @@ -868,7 +874,9 @@ prompttrunc(int arg, int truncchar, int doprint, int endchar) bp = ptr; w = bp - buf; fm++; + trunccount = dontcount; putpromptchar(doprint, endchar); + trunccount = 0; ptr = buf + w; /* putpromptchar() may have realloc()'d */ *bp = '\0'; -- cgit 1.4.1