]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Rebuild menus in the manual.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 7 Feb 2011 23:00:56 +0000 (00:00 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 7 Feb 2011 23:01:37 +0000 (00:01 +0100)
* doc/autoconf.texi: Rebuild menus using emacs ^C ^U ^A.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
doc/autoconf.texi

index 6d654019b92f47c3aa0a0104c64e9fe20d494f18..1ef7b16516dadaaa5ff43572546532eb2e88d3e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-02-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * doc/autoconf.texi: Rebuild menus using emacs ^C ^U ^A.
+
 2011-02-04  Paul Eggert  <eggert@cs.ucla.edu>
 
        autoconf: new macro AC_HEADER_CHECK_STDBOOL
index 6ad657e0fd6f51bf43eeb7ebd3b712fade1201ea..badf11d01a101237270e4605a9df40ce32a843b5 100644 (file)
@@ -340,7 +340,7 @@ Substitutions in Makefiles
 
 * Preset Output Variables::     Output variables that are always set
 * Installation Directory Variables::  Other preset output variables
-* Changed Directory Variables:: Warnings about @file{datarootdir}
+* Changed Directory Variables::  Warnings about @file{datarootdir}
 * Build Directories::           Supporting multiple concurrent compiles
 * Automatic Remaking::          Makefile rules for configuring
 
@@ -452,13 +452,6 @@ Programming in M4
 * Programming in M4sugar::      Convenient pure M4 macros
 * Debugging via autom4te::      Figuring out what M4 was doing
 
-Programming in M4sh
-
-* Common Shell Constructs::     Portability layer for common shell constructs
-* Polymorphic Variables::       Support for indirect variable names
-* Initialization Macros::       Macros to establish a sane shell environment
-* File Descriptor Macros::      File descriptor macros for input and output
-
 M4 Quotation
 
 * Active Characters::           Characters that change the behavior of M4
@@ -488,6 +481,13 @@ Programming in M4sugar
 * Set manipulation Macros::     Set manipulation in M4
 * Forbidden Patterns::          Catching unexpanded macros
 
+Programming in M4sh
+
+* Common Shell Constructs::     Portability layer for common shell constructs
+* Polymorphic Variables::       Support for indirect variable names
+* Initialization Macros::       Macros to establish a sane shell environment
+* File Descriptor Macros::      File descriptor macros for input and output
+
 Writing Autoconf Macros
 
 * Macro Definitions::           Basic format of an Autoconf macro
@@ -562,6 +562,14 @@ Portable C and C++ Programming
 * Floating Point Portability::  Portable floating-point arithmetic
 * Exiting Portably::            Exiting and the exit status
 
+Integer Overflow
+
+* Integer Overflow Basics::     Why integer overflow is a problem
+* Signed Overflow Examples::    Examples of code assuming wraparound
+* Optimization and Wraparound::  Optimizations that break uses of wraparound
+* Signed Overflow Advice::      Practical advice for signed overflow issues
+* Signed Integer Division::     @code{INT_MIN / -1} and @code{INT_MIN % -1}
+
 Manual Configuration
 
 * Specifying Target Triplets::  Specifying target triplets
@@ -2410,7 +2418,7 @@ makefiles.
 @menu
 * Preset Output Variables::     Output variables that are always set
 * Installation Directory Variables::  Other preset output variables
-* Changed Directory Variables:: Warnings about @file{datarootdir}
+* Changed Directory Variables::  Warnings about @file{datarootdir}
 * Build Directories::           Supporting multiple concurrent compiles
 * Automatic Remaking::          Makefile rules for configuring
 @end menu
@@ -20451,11 +20459,11 @@ signed integer remainder, the C standard requires overflow
 behavior that is commonly not implemented.
 
 @menu
-* Integer Overflow Basics::      Why integer overflow is a problem
-* Signed Overflow Examples::     Examples of code assuming wraparound
+* Integer Overflow Basics::     Why integer overflow is a problem
+* Signed Overflow Examples::    Examples of code assuming wraparound
 * Optimization and Wraparound::  Optimizations that break uses of wraparound
-* Signed Overflow Advice::       Practical advice for signed overflow issues
-* Signed Integer Division::      @code{INT_MIN / -1} and @code{INT_MIN % -1}
+* Signed Overflow Advice::      Practical advice for signed overflow issues
+* Signed Integer Division::     @code{INT_MIN / -1} and @code{INT_MIN % -1}
 @end menu
 
 @node Integer Overflow Basics