diff options
author | Clint Adams <clint@users.sourceforge.net> | 2003-02-06 16:20:29 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2003-02-06 16:20:29 +0000 |
commit | f13c7a3a2438e3a8f61123a3561ac031508f8e10 (patch) | |
tree | 07a5107ad70dc5d2770425edeea69e938a347b06 | |
parent | de13b1b0f593df71b7588deabdcc951eead1aa14 (diff) | |
download | zsh-f13c7a3a2438e3a8f61123a3561ac031508f8e10.tar.gz zsh-f13c7a3a2438e3a8f61123a3561ac031508f8e10.tar.xz zsh-f13c7a3a2438e3a8f61123a3561ac031508f8e10.zip |
unposted: conjugate "need" properly.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/compinit | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 37a81aa12..c6ce79da3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-02-06 Clint Adams <clint@zsh.org> + + * unposted: Completion/compinit: conjugate "need" properly. + 2003-01-29 Oliver Kiddle <opk@zsh.org> * 18149, 18153, 18156: Completion/bashcompinit, Doc/Zsh/compsys.yo: diff --git a/Completion/compinit b/Completion/compinit index b8dd939d9..2551db769 100644 --- a/Completion/compinit +++ b/Completion/compinit @@ -219,7 +219,7 @@ compdef() { # Get the options. if [[ $#* -eq 0 ]]; then - echo "$0: I needs arguments" + echo "$0: I need arguments" return 1 fi @@ -249,7 +249,7 @@ compdef() { shift OPTIND-1 if [[ $#* -eq 0 ]]; then - echo "$0: I needs arguments" + echo "$0: I need arguments" return 1 fi |