]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
(Shell Substitutions): test -n -> test -z,
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 25 Feb 2003 06:45:37 +0000 (06:45 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 25 Feb 2003 06:45:37 +0000 (06:45 +0000)
to fix a mismatch between example and discussion.

doc/autoconf.texi

index dbe0974108c51c4471668abc78a649a63013f56c..ea583223e7bb70e484a7f1c7ee19a40eeff42636 100644 (file)
@@ -9159,7 +9159,7 @@ use @samp{test -z "`cd /`"} because the following can happen:
 @example
 $ @kbd{pwd}
 /tmp
-$ @kbd{test -n "`cd /`" && pwd}
+$ @kbd{test -z "`cd /`" && pwd}
 /
 @end example