about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-05-30 07:31:13 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-05-30 07:31:13 +0000
commitb6cf214d81859c17c1df7fe1c01ba57ec4e4f362 (patch)
treece0e4a6c3c53f9bf06db17e266223ada122bd550
parent35580b3e7879093a196f87a0465f06e064d2df82 (diff)
downloadzsh-b6cf214d81859c17c1df7fe1c01ba57ec4e4f362.tar.gz
zsh-b6cf214d81859c17c1df7fe1c01ba57ec4e4f362.tar.xz
zsh-b6cf214d81859c17c1df7fe1c01ba57ec4e4f362.zip
some cleanup (14558)
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Base/Widget/_correct_word5
-rw-r--r--Completion/Base/Widget/_expand_word2
3 files changed, 5 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 156d189fa..3f0ef2d0c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-30  Sven Wischnowsky  <wischnow@zsh.org>
+
+	* 14558: Completion/Base/Widget/_correct_word,
+	Completion/Base/Widget/_expand_word: some cleanup
+
 2001-05-30  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>
 
 	* unposted: Zsh/Doc/metafaq.yo: make line spacing consistent.
diff --git a/Completion/Base/Widget/_correct_word b/Completion/Base/Widget/_correct_word
index fe2fbfeb1..e81c7ac7b 100644
--- a/Completion/Base/Widget/_correct_word
+++ b/Completion/Base/Widget/_correct_word
@@ -3,11 +3,6 @@
 # Simple completion front-end implementing spelling correction.
 # The maximum number of errors is set quite high, and
 # the numeric prefix can be used to specify a different value.
-#
-# If configurations keys with the prefix `correctword_' are
-# given they override those starting with `correct_'.
-
-eval "$_comp_setup"
 
 local curcontext="$curcontext"
 
diff --git a/Completion/Base/Widget/_expand_word b/Completion/Base/Widget/_expand_word
index 1e8ddb21b..9b71dc830 100644
--- a/Completion/Base/Widget/_expand_word
+++ b/Completion/Base/Widget/_expand_word
@@ -2,8 +2,6 @@
 
 # Simple completion front-end implementing expansion.
 
-eval "$_comp_setup"
-
 local curcontext="$curcontext"
 
 if [[ -z "$curcontext" ]]; then