diff options
Diffstat (limited to 'gcc/cpp.texi')
-rw-r--r-- | gcc/cpp.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpp.texi b/gcc/cpp.texi index 47a50da..7552cf9 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++ != ' ') @{ \ |