* cpp.texi: Fix typos.
authorAndres Felipe Vargas <avargas@teletulua.com.co>
Mon, 22 Jan 2001 20:41:04 +0000 (15:41 -0500)
committerNeil Booth <neil@gcc.gnu.org>
Mon, 22 Jan 2001 20:41:04 +0000 (20:41 +0000)
From-SVN: r39186

gcc/ChangeLog
gcc/cpp.texi

index 421766e1c6187ec4b6b51d6e12dad83169271e3c..27d7978202bba418e55662925d094f39b6b37249 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-22  Andres Felipe Vargas <avargas@teletulua.com.co>
+
+       * cpp.texi: Correct typos.
+
 Mon Jan 22 13:59:09 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * explow.c (probe_stack_range): Ensure value passed to
index 02b6253c53562f09c51069c8949f3abf9c9d6152..253d6ee6cba56c91037b7c7085026817da0c7088 100644 (file)
@@ -1127,7 +1127,7 @@ version 1, which is now obsolete, and @samp{2} for version 2).
 @findex __GNUC_MINOR__
 The macro contains the minor version number of the compiler.  This can
 be used to work around differences between different releases of the
-compiler (for example, if GCC 2.6.3 is known to support a feature, you
+compiler (for example, if GCC 2.6.x is known to support a feature, you
 can test for @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)}).
 
 @item __GNUC_PATCHLEVEL__
@@ -1138,7 +1138,7 @@ of the compiler (for example, if GCC 2.6.2 is known to contain a bug,
 whereas GCC 2.6.3 contains a fix, and you have code which can workaround
 the problem depending on whether the bug is fixed or not, you can test for
 @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 6) || 
-(__GNUC__ == 2 && __GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 3)}).
+(__GNUC__ == 2 && __GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ >= 3)}).
 
 @item __GNUG__
 @findex __GNUG__