]> gcc.gnu.org Git - gcc.git/commitdiff
* cpp.texi: Fix some typos.
authorJeffrey A Law <law@cygnus.com>
Thu, 13 May 1999 01:25:49 +0000 (01:25 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 13 May 1999 01:25:49 +0000 (19:25 -0600)
From-SVN: r26922

gcc/ChangeLog
gcc/cpp.texi

index 24c75b9cf64c27b2cef483c34c80d36b8dacaa3d..4f9a2ef6d02fe5fc01b6287fd64f48e4bc212259 100644 (file)
@@ -1,3 +1,7 @@
+Thu May 13 02:25:01 1999  Jeffrey A Law  (law@cygnus.com)
+
+       * cpp.texi: Fix some typos.
+
 Thu May 13 01:49:55 1999  Graham Stott <GrahamS@RCP.co.uk>
 
         * loop.c (maybe_eliminate_biv): Check regno against
index 47a50dafe7ed30025149608a226c2fb5445a8dcb..7552cf97d6170f9caef2301761a689ff8771d817 100644 (file)
@@ -1482,7 +1482,7 @@ pointer (the argument @samp{p} says where to find it) across whitespace
 characters:
 
 @example
-#define SKIP_SPACES (p, limit)  \
+#define SKIP_SPACES(p, limit)  \
 @{ register char *lim = (limit); \
   while (p != lim) @{            \
     if (*p++ != ' ') @{          \
@@ -1518,7 +1518,7 @@ The definition of the macro @samp{SKIP_SPACES} can be altered to solve
 this problem, using a @samp{do @dots{} while} statement.  Here is how:
 
 @example
-#define SKIP_SPACES (p, limit)     \
+#define SKIP_SPACES(p, limit)     \
 do @{ register char *lim = (limit); \
      while (p != lim) @{            \
        if (*p++ != ' ') @{          \
This page took 0.079296 seconds and 5 git commands to generate.