diff options
author | Peter Stephenson <pws@zsh.org> | 2015-06-02 14:43:08 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-06-02 14:43:08 +0100 |
commit | 6b4d6eaa9b040a05ad9796d20cda0b797209a443 (patch) | |
tree | e1c97f9cd59c7350052ebdd134f69aed88dc911a | |
parent | ce9d3fd7b727ddcc7bd09d789a47f15d16762534 (diff) | |
download | zsh-6b4d6eaa9b040a05ad9796d20cda0b797209a443.tar.gz zsh-6b4d6eaa9b040a05ad9796d20cda0b797209a443.tar.xz zsh-6b4d6eaa9b040a05ad9796d20cda0b797209a443.zip |
users/20243: turn off GLOB_ASSIGN in completion system.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/compinit | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 7bb75a493..1767c78ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-06-02 Peter Stephenson <p.stephenson@samsung.com> + + * users/20243: Completion/compinit: turn off GLOB_ASSIGN in + completion system. + 2015-06-02 Daniel Shahaf <d.s@daniel.shahaf.name> * 35270: Completion/Base/Utility/_describe: _describe: Document diff --git a/Completion/compinit b/Completion/compinit index 9470c92f6..79f9d423a 100644 --- a/Completion/compinit +++ b/Completion/compinit @@ -142,6 +142,7 @@ _comp_options=( NO_cshnullglob NO_cshjunkiequotes NO_errexit + NO_globassign NO_globsubst NO_histsubstpattern NO_ignorebraces |