Be consistent in doc example.

* doc/autoconf.texi: (Polymorphic Variables) be consistent in code
example and output

Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
Peter Johansson 2010-06-22 21:09:04 -04:00 committed by Eric Blake
parent de8b1ecbdb
commit bea3f1684a
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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.

View File

@ -13415,7 +13415,7 @@ can handle composed shell variable names:
@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])