about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-11-13 17:03:55 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-11-13 17:03:55 +0000
commit3bcec12bd0ec066cbc3d133d69823c8ae551dfff (patch)
tree2b112929bc578967f3a0a8de17ae901f2aa1a20f /Src
parentaf7eba0c848d12629d41be991467d35a902a9e66 (diff)
downloadzsh-3bcec12bd0ec066cbc3d133d69823c8ae551dfff.tar.gz
zsh-3bcec12bd0ec066cbc3d133d69823c8ae551dfff.tar.xz
zsh-3bcec12bd0ec066cbc3d133d69823c8ae551dfff.zip
merge changes back from 4.1
Diffstat (limited to 'Src')
-rw-r--r--Src/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/parse.c b/Src/parse.c
index ddb163986..9f40b4348 100644
--- a/Src/parse.c
+++ b/Src/parse.c
@@ -1841,9 +1841,9 @@ par_cond_2(void)
 	    condlex();
 	    return par_cond_double(dupstring("-n"), s1);
 	}
-	if (testargs[1] && !testargs[2]) {
+	if (testargs[1]) {
 	    /* three arguments: if the second argument is a binary operator, *
-	     * perform that binary test on the first and the trird argument  */
+	     * perform that binary test on the first and the third argument  */
 	    if (!strcmp(*testargs, "=")  ||
 		!strcmp(*testargs, "==") ||
 		!strcmp(*testargs, "!=") ||