diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Zsh/Context/_subscript | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 363e64c54..f523c46a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-05-08 Bart Schaefer <schaefer@zsh.org> + + * unposted: Completion/Zsh/Context/_subscript: Remove unnecessary + `*' from a pattern. + 2001-05-08 Sven Wischnowsky <wischnow@zsh.org> * 14257: Completion/Base/Utility/_values, Doc/Zsh/compsys.yo, diff --git a/Completion/Zsh/Context/_subscript b/Completion/Zsh/Context/_subscript index 516c8cae9..224fbb148 100644 --- a/Completion/Zsh/Context/_subscript +++ b/Completion/Zsh/Context/_subscript @@ -8,7 +8,7 @@ if [[ "$1" = -q ]]; then shift fi -compset -P '\(([^\(\)]|*\(*\)*)##\)' # remove subscript flags +compset -P '\(([^\(\)]|\(*\))##\)' # remove subscript flags if [[ "$PREFIX" = :* ]]; then _wanted characters expl 'character class' \ |