diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2000-11-27 16:52:58 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2000-11-27 16:52:58 +0000 |
commit | 29f0d4d00f2f93efc4f809dfb9cefb94a58338be (patch) | |
tree | e9796d36bf1af47b1d86830f454a638972166d0b | |
parent | ad6268466c5001c215d7b98e1d69b31475ac5c49 (diff) | |
download | zsh-29f0d4d00f2f93efc4f809dfb9cefb94a58338be.tar.gz zsh-29f0d4d00f2f93efc4f809dfb9cefb94a58338be.tar.xz zsh-29f0d4d00f2f93efc4f809dfb9cefb94a58338be.zip |
Add missing quote.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/Builtins/_zstyle | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 7890e6db3..a98559f95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-11-27 Bart Schaefer <schaefer@zsh.org> + + * 132xx: Completion/Builtins/_zstyle: Add missing quote. + 2000-11-27 Sven Wischnowsky <wischnow@zsh.org> * 13199: .cvsignore, Completion/User/_gprof: pattern-fix in diff --git a/Completion/Builtins/_zstyle b/Completion/Builtins/_zstyle index 654f314e7..6a6d5787d 100644 --- a/Completion/Builtins/_zstyle +++ b/Completion/Builtins/_zstyle @@ -294,7 +294,7 @@ while [[ -n $state ]]; do ;; insunambig) - _wanted values expl 'insert unambiguous string compadd true false pattern + _wanted values expl 'insert unambiguous string' compadd true false pattern ;; urgh) |