]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Synchronize documentation with implementation. exp-1999-06-18
authorMatthew D. Langston <langston@SLAC.Stanford.EDU>
Wed, 9 Jun 1999 21:10:01 +0000 (21:10 +0000)
committerMatthew D. Langston <langston@SLAC.Stanford.EDU>
Wed, 9 Jun 1999 21:10:01 +0000 (21:10 +0000)
ChangeLog
autoconf.texi
doc/autoconf.texi

index f22bd5c86fc9b591b8d2e87cdc5849aaffc6520a..677a572654b201448cac1cf1cfd73daf8f861624 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-06-09  Matthew D. Langston  <langston@SLAC.Stanford.EDU>
+
+       * autoconf.texi (Pretty Help Strings): Synchronize documentation
+       with implementation.
+
 1999-06-04  Matthew D. Langston  <langston@SLAC.Stanford.EDU>
 
        * acgeneral.m4 (AC_OUTPUT_MAKE_DEFS): Fix sed regexp for handling
index a4821fea1cb7cdb62f9f320fd0a22edd3c3c231c..0b83168a2039ecf3b41ab4a64813c3181beb5224 100644 (file)
@@ -4663,10 +4663,9 @@ support providing a help string.
 Properly formatting the @samp{help strings} which are used in
 @code{AC_ARG_WITH} (@pxref{External Software}) and @code{AC_ARG_ENABLE}
 (@pxref{Package Options}) can be challenging.  Specifically, you want
-your own @samp{help strings}, especially multi-line help strings, to
-wrap and line up in the appropriate columns of @samp{configure --help}
-just like the standard Autoconf @samp{help strings} do.  This is the
-purpose of the @code{AC_HELP_STRING} macro.
+your own @samp{help strings} to line up in the appropriate columns of
+@samp{configure --help} just like the standard Autoconf @samp{help
+strings} do.  This is the purpose of the @code{AC_HELP_STRING} macro.
 
 @defmac AC_HELP_STRING (@var{left-hand-side}, @var{right-hand-side}, @var{formatted-help-string})
 @maindex HELP_STRING
@@ -4720,12 +4719,6 @@ AC_DEFUN(MY_ARG_WITH,
   AC_CACHE_CHECK(whether to use $1, ac_cv_use_$1, ac_cv_use_$1=$2)
 ])
 @end example
-
-Make your help strings as long as you wish, as @code{AC_HELP_STRING}
-will properly wrap them.  However, shorter, more succinct help strings
-are usually easier for the user running @samp{configure --help}, and
-they look better too.
-
 @end defmac
 
 
index a4821fea1cb7cdb62f9f320fd0a22edd3c3c231c..0b83168a2039ecf3b41ab4a64813c3181beb5224 100644 (file)
@@ -4663,10 +4663,9 @@ support providing a help string.
 Properly formatting the @samp{help strings} which are used in
 @code{AC_ARG_WITH} (@pxref{External Software}) and @code{AC_ARG_ENABLE}
 (@pxref{Package Options}) can be challenging.  Specifically, you want
-your own @samp{help strings}, especially multi-line help strings, to
-wrap and line up in the appropriate columns of @samp{configure --help}
-just like the standard Autoconf @samp{help strings} do.  This is the
-purpose of the @code{AC_HELP_STRING} macro.
+your own @samp{help strings} to line up in the appropriate columns of
+@samp{configure --help} just like the standard Autoconf @samp{help
+strings} do.  This is the purpose of the @code{AC_HELP_STRING} macro.
 
 @defmac AC_HELP_STRING (@var{left-hand-side}, @var{right-hand-side}, @var{formatted-help-string})
 @maindex HELP_STRING
@@ -4720,12 +4719,6 @@ AC_DEFUN(MY_ARG_WITH,
   AC_CACHE_CHECK(whether to use $1, ac_cv_use_$1, ac_cv_use_$1=$2)
 ])
 @end example
-
-Make your help strings as long as you wish, as @code{AC_HELP_STRING}
-will properly wrap them.  However, shorter, more succinct help strings
-are usually easier for the user running @samp{configure --help}, and
-they look better too.
-
 @end defmac