diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-10-27 09:33:04 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-10-27 09:33:04 +0000 |
commit | f02f5b7f362ef6c2e3528c23f89391ca5a71ebf7 (patch) | |
tree | 084a6f5ea94890c4a900c1606e3827b6d16becad | |
parent | 8eb2c90530262f8ac4e7515ae7da556dabb7185b (diff) | |
download | zsh-f02f5b7f362ef6c2e3528c23f89391ca5a71ebf7.tar.gz zsh-f02f5b7f362ef6c2e3528c23f89391ca5a71ebf7.tar.xz zsh-f02f5b7f362ef6c2e3528c23f89391ca5a71ebf7.zip |
zsh-workers/8440
-rw-r--r-- | Completion/Core/compinit | 4 | ||||
-rw-r--r-- | Doc/Zsh/compsys.yo | 4 | ||||
-rw-r--r-- | Src/xmods.conf | 2 |
3 files changed, 2 insertions, 8 deletions
diff --git a/Completion/Core/compinit b/Completion/Core/compinit index b3472ca0e..ca9240f92 100644 --- a/Completion/Core/compinit +++ b/Completion/Core/compinit @@ -78,10 +78,6 @@ while [[ $# -gt 0 && $1 = -[dDf] ]]; do fi done -# We need the parameter modules. - -zmodload -i parameter zleparameter - # The associative array containing the definitions for the commands. # Definitions for patterns will be stored in the normal arrays `_patcomps' # and `_postpatcomps'. diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index f2f551639..e895868cb 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -23,10 +23,6 @@ ifzman(the section `Matching Control' in zmanref(zshcompctl))\ ifnzman(noderef(Matching Control)) for further details. -Also note that this completion system requires the tt(parameter) and -tt(zleparameter) modules to be linked into the shell or to be -dynamically loadable. - startmenu() menu(Initialization) menu(Control Functions) diff --git a/Src/xmods.conf b/Src/xmods.conf index def807911..db72b4933 100644 --- a/Src/xmods.conf +++ b/Src/xmods.conf @@ -5,3 +5,5 @@ compctl sched complist computil +parameter +zleparameter |