summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--Completion/Bsd/_bsd_pkg2
-rw-r--r--Completion/Bsd/_kld2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f32ad904e..6dc98dd66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2000-08-01 Sven Wischnowsky <wischnow@zsh.org>
+ * 12453: Completion/Bsd/_bsd_pkg, Completion/Bsd/_kld,
+ Completion/Commands/_next_tags, Completion/User/_cvs,
+ Completion/User/_mailboxes, Completion/X/_xset,
+ Completion/X/_xwit, Src/exec.c: remove tests for kshautoload (use
+ zcompile -z); fix for setting scriptname for functions that
+ redefine themselves
+
* 12449: Completion/Base/_arguments, Completion/Base/_values,
Completion/Core/_complete, Doc/Zsh/compsys.yo: make $compcontext
more powerful and easier to use for simple cases
diff --git a/Completion/Bsd/_bsd_pkg b/Completion/Bsd/_bsd_pkg
index f60348479..f302f8216 100644
--- a/Completion/Bsd/_bsd_pkg
+++ b/Completion/Bsd/_bsd_pkg
@@ -65,4 +65,4 @@ _bsd_pkg() {
esac
}
-[[ -o kshautoload ]] || _bsd_pkg "$@"
+_bsd_pkg "$@"
diff --git a/Completion/Bsd/_kld b/Completion/Bsd/_kld
index 065aa0c98..2768af393 100644
--- a/Completion/Bsd/_kld
+++ b/Completion/Bsd/_kld
@@ -38,4 +38,4 @@ _kld() {
esac
}
-[[ -o kshautoload ]] || _kld "$@"
+_kld "$@"