+2002-04-25 Akim Demaille <akim@epita.fr>
+
+ * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
+ Thanks to Paul Eggert.
+
2002-04-25 Akim Demaille <akim@epita.fr>
* lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
don't have first hand experience with older @command{sed}s) have
supported it.
+@sc{posix} requires that you must not have any white space between
+@samp{!} and the following command. It is OK to have blanks between
+the address and the @samp{!}. For instance, on Solaris 8:
+
+@example
+$ @kbd{echo "foo" | sed -n '/bar/ ! p'}
+@error{}Unrecognized command: /bar/ ! p
+$ @kbd{echo "foo" | sed -n '/bar/! p'}
+@error{}Unrecognized command: /bar/! p
+$ @kbd{echo "foo" | sed -n '/bar/ !p'}
+foo
+@end example
@item @command{sed} (@samp{t})
@c ---------------------------