aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpp.texi
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-05-13 01:25:49 +0000
committerJeff Law <law@gcc.gnu.org>1999-05-12 19:25:49 -0600
commit16f322e33c0fc49e8f3283cad331a8a7a5f55c53 (patch)
tree35b4c506b2e124f3662a5447174f9252358683bc /gcc/cpp.texi
parent348425392f5d7c1be30bc8647df2189ea9b1772f (diff)
downloadgcc-16f322e33c0fc49e8f3283cad331a8a7a5f55c53.zip
gcc-16f322e33c0fc49e8f3283cad331a8a7a5f55c53.tar.gz
gcc-16f322e33c0fc49e8f3283cad331a8a7a5f55c53.tar.bz2
* cpp.texi: Fix some typos.
From-SVN: r26922
Diffstat (limited to 'gcc/cpp.texi')
-rw-r--r--gcc/cpp.texi4
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++ != ' ') @{ \