diff options
| author | Bart Schaefer <barts@users.sourceforge.net> | 2008-09-03 03:12:01 +0000 |
|---|---|---|
| committer | Bart Schaefer <barts@users.sourceforge.net> | 2008-09-03 03:12:01 +0000 |
| commit | ae79d264a3fd989713f6c7413c5096151413f284 (patch) | |
| tree | 14a3ca2b9e7169fb319bfef36df1ec7e5d62dc3d | |
| parent | Mikael Magnusson: 25594: "git clean" cleanup. (diff) | |
| download | zsh-ae79d264a3fd989713f6c7413c5096151413f284.tar zsh-ae79d264a3fd989713f6c7413c5096151413f284.tar.gz zsh-ae79d264a3fd989713f6c7413c5096151413f284.tar.bz2 zsh-ae79d264a3fd989713f6c7413c5096151413f284.tar.lz zsh-ae79d264a3fd989713f6c7413c5096151413f284.tar.xz zsh-ae79d264a3fd989713f6c7413c5096151413f284.tar.zst zsh-ae79d264a3fd989713f6c7413c5096151413f284.zip | |
25600: fix incorrect pattern introduced by 25059.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Functions/Prompts/prompt_bart_setup | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-09-02 Barton E. Schaefer <schaefer@zsh.org> + + * 25600: Functions/Prompts/prompt_bart_setup: fix pattern + introduced in 25059 that broke PS1 parsing. + 2008-09-02 Clint Adams <clint@zsh.org> * Mikael Magnusson: 25594: Completion/Unix/Command/_git: diff --git a/Functions/Prompts/prompt_bart_setup b/Functions/Prompts/prompt_bart_setup index a71bf2deb..55dd292e8 100644 --- a/Functions/Prompts/prompt_bart_setup +++ b/Functions/Prompts/prompt_bart_setup @@ -70,7 +70,7 @@ integer PSCOL=1 prompt_bart_precmd () { setopt localoptions noxtrace noksharrays unset - local zero='%([BSUbfksu]|FB{*})' escape colno lineno + local zero='%([BSUbfksu]|[FB]{*})' escape colno lineno # Using psvar here protects against unwanted promptsubst expansions. |
