+2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
+
+ * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
+ can be rewritten using if-then-else. Suggested by Bruno Haible.
+
2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
* doc/autoconf.texi (testsuite Scripts): Fix typo.
cmp file1 file2 >/dev/null 2>&1 || echo files differ or trouble
@end example
+More generally, one can always rewrite @samp{! @var{command}} as:
+
+@example
+if @var{command}; then (exit 1); else :; fi
+@end example
@item @command{break}
@c ------------------