about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--Functions/Misc/add-zsh-hook2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b9c8a7a1d..96436c5a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
+2007-04-19  Clint Adams  <clint@zsh.org>
+
+	* 23301: Paul Ackersviller: Functions/Misc/add-zsh-hook:
+	fix semicolon mistyped as a colon.
+
 2007-04-19  Peter Stephenson  <pws@csr.com>
 
-	* unposte: Config/version.mk: set release string to 4.3.4-dev-0.
+	* unposted: Config/version.mk: set release string to 4.3.4-dev-0.
 
 	* users/11419: Doc/Zsh/zle.yo,
 	Functions/Zle/backward-kill-word-match,
diff --git a/Functions/Misc/add-zsh-hook b/Functions/Misc/add-zsh-hook
index fa8015a3d..b11db5b5c 100644
--- a/Functions/Misc/add-zsh-hook
+++ b/Functions/Misc/add-zsh-hook
@@ -52,7 +52,7 @@ if (( del )); then
     (( ${(P)#hook} )) || unset $hook
   fi
 else
-  if (( ${(P)+hook} )): then
+  if (( ${(P)+hook} )); then
     if (( ${(P)hook[(I)$fn]} == 0 )); then
       set -A $hook ${(P)hook} $fn
     fi