diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2022-02-12 20:55:40 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2022-02-12 20:55:40 +0100 |
commit | 12eb3e5356f2fc3351eed58ef1cef1b8fb83b504 (patch) | |
tree | 426eca82c8d3316351732d0e6d5cb2359d3d7e63 /Src/prompt.c | |
parent | 94c033d2e281eb1f49e8366d21fc259ce8c0c4f5 (diff) | |
parent | 1a490c7050cfacd5daf8376d5a1f0e8cb14ccda5 (diff) | |
download | zsh-12eb3e5356f2fc3351eed58ef1cef1b8fb83b504.tar.gz zsh-12eb3e5356f2fc3351eed58ef1cef1b8fb83b504.zip |
New upstream version 5.8.1
Diffstat (limited to 'Src/prompt.c')
-rw-r--r-- | Src/prompt.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Src/prompt.c b/Src/prompt.c index b65bfb86b..91e21c8e9 100644 --- a/Src/prompt.c +++ b/Src/prompt.c @@ -244,6 +244,12 @@ parsecolorchar(zattr arg, int is_fg) bv->fm += 2; /* skip over F{ */ if ((ep = strchr(bv->fm, '}'))) { char oc = *ep, *col, *coll; + int ops = opts[PROMPTSUBST], opb = opts[PROMPTBANG]; + int opp = opts[PROMPTPERCENT]; + + opts[PROMPTPERCENT] = 1; + opts[PROMPTSUBST] = opts[PROMPTBANG] = 0; + *ep = '\0'; /* expand the contents of the argument so you can use * %v for example */ @@ -252,6 +258,10 @@ parsecolorchar(zattr arg, int is_fg) arg = match_colour((const char **)&coll, is_fg, 0); free(col); bv->fm = ep; + + opts[PROMPTSUBST] = ops; + opts[PROMPTBANG] = opb; + opts[PROMPTPERCENT] = opp; } else { arg = match_colour((const char **)&bv->fm, is_fg, 0); if (*bv->fm != '}') |