* doc/autoconf.texi: (Polymorphic Variables) be consistent in code
example and output
Signed-off-by: Eric Blake <eblake@redhat.com>
+2010-06-22 Peter Johansson <trojkan@gmail.com> (tiny change)
+
+ Be consistent in doc example.
+ * doc/autoconf.texi: (Polymorphic Variables) be consistent in code
+ example and output
+
2010-06-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Add comments for vim syntax highlighting.
@example
m4_define([MY_CHECK_HEADER],
[AS_VAR_PUSHDEF([my_Header], [ac_cv_header_$1])dnl
-AS_VAR_IF([my_Header], [yes], [echo "header $1 available"])dnl
+AS_VAR_IF([my_Header], [yes], [echo "header $1 detected"])dnl
AS_VAR_POPDEF([my_Header])dnl
])
MY_CHECK_HEADER([stdint.h])