diff options
author | Peter Stephenson <pws@zsh.org> | 2017-01-16 17:52:51 +0000 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2017-01-16 17:52:51 +0000 |
commit | 2e76fb80b4c228944b57b8f669e75456a23f147d (patch) | |
tree | 3c5bf0c88f9afa7afa5f69595ed7e092acccd142 | |
parent | 0a2d92f98c7f1a122586869df0bb11dad3d371be (diff) | |
download | zsh-2e76fb80b4c228944b57b8f669e75456a23f147d.tar.gz zsh-2e76fb80b4c228944b57b8f669e75456a23f147d.tar.xz zsh-2e76fb80b4c228944b57b8f669e75456a23f147d.zip |
40372: turn off POSIX_IDENTIFIERS option in completion
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/compinit | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index c7319d8d0..e478b27ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2017-01-16 Peter Stephenson <p.stephenson@samsung.com> + * 40372: Completion/compinit: turn off POSIX_IDENTIFIERS option + for completion. + * 40369: Src/builtin.c: whence -v should probably quote commands since it quotes functions. diff --git a/Completion/compinit b/Completion/compinit index 2715c47e8..cc663cb71 100644 --- a/Completion/compinit +++ b/Completion/compinit @@ -154,6 +154,7 @@ _comp_options=( NO_markdirs NO_octalzeroes NO_posixbuiltins + NO_posixidentifiers NO_shwordsplit NO_shglob NO_warncreateglobal |