autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] use @dots{} in autoconf.texi


From: Art Haas
Subject: [PATCH] use @dots{} in autoconf.texi
Date: Fri, 21 Jun 2002 14:55:17 -0500
User-agent: Mutt/1.4i

Hi.

Here's a small patch that replaces all but two occurances
of "..." with @dots{} or @enddots{}. I used @enddots{} in
a couple of places where I thought it made more sense than
just @dots{}. Using these texinfo markup commands in place
of "..." improves the appearances of printed output, according
to the texinfo documentation.

This patch is against the current CVS version.

Thanks for all the work on autoconf!

Art Haas

Index: doc/autoconf.texi
===================================================================
RCS file: /cvsroot/autoconf/autoconf/doc/autoconf.texi,v
retrieving revision 1.634
diff -u -r1.634 autoconf.texi
--- doc/autoconf.texi   11 Jun 2002 11:00:22 -0000      1.634
+++ doc/autoconf.texi   21 Jun 2002 19:36:31 -0000
@@ -629,7 +629,7 @@
 
 The benefits of Automake increase for larger packages (especially ones
 with subdirectories), but even for small programs the added convenience
-and portability can be substantial.  And that's not address@hidden
+and portability can be substantial.  And that's not address@hidden
 
 @node Libtool
 @section Libtool
@@ -1244,9 +1244,9 @@
 $ @kbd{autoconf -Wcross,error}
 configure.ac:8: error: AC_TRY_RUN called without default \
 to allow cross compiling
-acgeneral.m4:3044: AC_TRY_RUN is expanded from...
-configure.ac:2: INNER is expanded from...
-configure.ac:5: OUTER is expanded from...
+acgeneral.m4:3044: AC_TRY_RUN is expanded address@hidden
+configure.ac:2: INNER is expanded address@hidden
+configure.ac:5: OUTER is expanded address@hidden
 configure.ac:8: the top level
 @end example
 
@@ -1850,7 +1850,7 @@
 
 You should be extremely cautious in your variable names: all the
 @var{init-cmds} share the same name space and may overwrite each other
-in unpredictable ways.  address@hidden
+in unpredictable ways.  address@hidden
 @end table
 
 All these macros can be called multiple times, with different
@@ -2017,7 +2017,7 @@
 question-answer message pairs?  These variables provide a way:
 
 @example
-echo $ECHO_N "And the winner is... $ECHO_C"
+echo $ECHO_N "And the winner address@hidden $ECHO_C"
 sleep 100000000000
 echo "address@hidden@}dead."
 @end example
@@ -5918,7 +5918,7 @@
 @example
 AC_LANG_PUSH(Fortran 77)
 # Perform some tests on Fortran 77.
-# ...
+# @dots{}
 AC_LANG_POP(Fortran 77)
 @end example
 @end defmac
@@ -6378,7 +6378,7 @@
 @end group
 
 @group
-# Might abort...
+# Might address@hidden
 AM_PATH_GTK(1.0.2,, [AC_MSG_ERROR([GTK not in path])])
 AM_PATH_GTKMM(0.9.5,, [AC_MSG_ERROR([GTK not in path])])
 @end group
@@ -6409,7 +6409,7 @@
 @acindex MSG_CHECKING
 Notify the user that @command{configure} is checking for a particular
 feature.  This macro prints a message that starts with @samp{checking }
-and ends with @samp{...} and no newline.  It must be followed by a call
+and ends with @address@hidden and no newline.  It must be followed by a call
 to @code{AC_MSG_RESULT} to print the result of the check and the
 newline.  The @var{feature-description} should be something like
 @samp{whether the Fortran compiler accepts C++ comments} or @samp{for
@@ -6496,7 +6496,7 @@
 
 @c FIXME: Grmph, yet another quoting myth: quotation has *never*
 @c prevented `expansion' of $1.  Unless it refers to the expansion
address@hidden of the value of $1?  Anyway, we need a rewrite address@hidden
address@hidden of the value of $1?  Anyway, we need a rewrite address@hidden
 
 The most common problem with existing macros is an improper quotation.
 This section, which users of Autoconf can skip, but which macro writers
@@ -6637,7 +6637,7 @@
 @end example
 
 With this in mind, we can explore the cases where macros invoke
address@hidden
address@hidden
 
 
 @node Quotation and Nested Macros
@@ -6806,7 +6806,7 @@
 @code{--syntax}.  Nevertheless, they are implemented as M4 builtins, as
 it makes M4 libraries self contained (no need for additional options).
 
-There lies the problem...
+There lies the address@hidden
 
 @sp 1
 
@@ -7126,9 +7126,9 @@
 $ @kbd{autom4te -l autoconf -Wcross,error}
 configure.ac:8: error: AC_TRY_RUN called without default \
 to allow cross compiling
-acgeneral.m4:3044: AC_TRY_RUN is expanded from...
-configure.ac:2: INNER is expanded from...
-configure.ac:5: OUTER is expanded from...
+acgeneral.m4:3044: AC_TRY_RUN is expanded address@hidden
+configure.ac:2: INNER is expanded address@hidden
+configure.ac:5: OUTER is expanded address@hidden
 configure.ac:8: the top level
 @end example
 
@@ -7366,7 +7366,7 @@
 
 @defmac m4_if (@var{comment})
 @defmacx m4_if (@var{string-1}, @var{string-2}, @var{equal}, @ovar{not-equal})
address@hidden m4_if (@var{string-1}, @var{string-2}, @var{equal}, ...)
address@hidden m4_if (@var{string-1}, @var{string-2}, @var{equal}, @dots{})
 @msindex m4_if
 This macro corresponds to @code{ifelse}.
 @end defmac
@@ -7429,12 +7429,12 @@
 by adding or removing levels of quotes.  They are meant for hard core M4
 programmers.
 
address@hidden m4_dquote (@var{arg1}, ...)
address@hidden m4_dquote (@var{arg1}, @dots{})
 @msindex dquote
 Return the arguments as a quoted list of quoted arguments.
 @end defmac
 
address@hidden m4_quote (@var{arg1}, ...)
address@hidden m4_quote (@var{arg1}, @dots{})
 @msindex quote
 Return the arguments as a single entity, i.e., wrap them into a pair of
 quotes.
@@ -8383,10 +8383,10 @@
 @end example
 
 @noindent
-You'll appreciate the various levels of address@hidden
+You'll appreciate the various levels of address@hidden
 
 One workaround is to grep out uninteresting lines, hoping not to remove
-good address@hidden
+good address@hidden
 
 Don't try to move/delete open files, such as in @samp{exec >foo; mv foo
 bar}, see @ref{Limitations of Builtins}, @command{mv} for more details.
@@ -10106,7 +10106,7 @@
 
 Make itself suffers a great number of limitations, only a few of which
 being listed here.  First of all, remember that since commands are
-executed by the shell, all its weaknesses are address@hidden
+executed by the shell, all its weaknesses are address@hidden
 
 @table @asis
 @item @code{$<}
@@ -12444,7 +12444,7 @@
 @section Upgrading From Version 2.13
 
 The introduction of the previous section (@pxref{Autoconf 1}) perfectly
-suits this section...
+suits this address@hidden
 
 @quotation
 Autoconf version 2.50 is mostly backward compatible with version 2.13.
@@ -12517,7 +12517,7 @@
 @end example
 
 Many many (and many more) Autoconf macros were lacking proper quotation,
-including no less than... @code{AC_DEFUN} itself!
+including no less address@hidden @code{AC_DEFUN} itself!
 
 @example
 $ @kbd{cat configure.in}
@@ -12552,7 +12552,7 @@
 
 Unfortunately Automake did not quote the name of these macros!
 Therefore, when @command{m4} finds something like
address@hidden(AM_TYPE_PTRDIFF_T, ...)} in @file{aclocal.m4},
address@hidden(AM_TYPE_PTRDIFF_T, @dots{})} in @file{aclocal.m4},
 @code{AM_TYPE_PTRDIFF_T} is
 expanded, replaced with its Autoconf definition.
 
@@ -12566,7 +12566,7 @@
 $ @kbd{aclocal-1.4}
 $ @kbd{autoconf}
 ./aclocal.m4:17: error: m4_defn: undefined macro: _m4_divert_diversion
-actypes.m4:289: AM_TYPE_PTRDIFF_T is expanded from...
+actypes.m4:289: AM_TYPE_PTRDIFF_T is expanded address@hidden
 ./aclocal.m4:17: the top level
 $
 @end example
@@ -12787,7 +12787,7 @@
 @end example
 
 @noindent
-Unfortunately, @command{autoupdate} cannot help here, since... this is
+Unfortunately, @command{autoupdate} cannot help here, address@hidden this is
 not a macro!  Of course, first make sure your release of Automake and/or
 Libtool still requires these.
 
@@ -12990,7 +12990,7 @@
 state of the build machine, including some important environment
 variables.
 @c FIXME: How about having an M4sh macro to say `hey, log the value
address@hidden of `...'?  This would help both Autoconf and Autotest.
address@hidden of address@hidden'?  This would help both Autoconf and Autotest.
 
 @item tested programs
 The absolute path and answers to @option{--version} of the tested
@@ -13491,7 +13491,7 @@
 get into its present form?  (Why does it look like gorilla spit?)  If
 you're not wondering, then this chapter contains no information useful
 to you, and you might as well skip it.  If you @emph{are} wondering,
-then let there be address@hidden
+then let there be address@hidden
 
 @menu
 * Genesis::                     Prehistory and naming of @command{configure}
-- 
They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety.
 -- Benjamin Franklin, Historical Review of Pennsylvania, 1759



reply via email to

[Prev in Thread] Current Thread [Next in Thread]