From: Jeffrey A Law Date: Thu, 13 May 1999 01:25:49 +0000 (+0000) Subject: * cpp.texi: Fix some typos. X-Git-Tag: prereleases/gcc-2.95-test~484 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16f322e33c0fc49e8f3283cad331a8a7a5f55c53;p=thirdparty%2Fgcc.git * cpp.texi: Fix some typos. From-SVN: r26922 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 24c75b9cf64c..4f9a2ef6d02f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 * loop.c (maybe_eliminate_biv): Check regno against diff --git a/gcc/cpp.texi b/gcc/cpp.texi index 47a50dafe7ed..7552cf97d617 100644 --- a/gcc/cpp.texi +++ b/gcc/cpp.texi @@ -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++ != ' ') @{ \