mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-12-15 20:51:27 +01:00
23301: fix semicolon mistyped as a colon.
This commit is contained in:
parent
200059e02d
commit
8f0fefdbfd
2 changed files with 7 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue