From: Peter Johansson Date: Wed, 23 Jun 2010 01:09:04 +0000 (-0400) Subject: Be consistent in doc example. X-Git-Tag: v2.66~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bea3f1684a2773ef711dc46ec341f4b8aef153c9;p=thirdparty%2Fautoconf.git Be consistent in doc example. * doc/autoconf.texi: (Polymorphic Variables) be consistent in code example and output Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index d59487e9..f8a248d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-06-22 Peter Johansson (tiny change) + + Be consistent in doc example. + * doc/autoconf.texi: (Polymorphic Variables) be consistent in code + example and output + 2010-06-22 Ralf Wildenhues Add comments for vim syntax highlighting. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 77013d43..da4fa273 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -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])