summaryrefslogtreecommitdiff
path: root/gcc/cpp.texi
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-13 01:25:49 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-13 01:25:49 +0000
commitf3444faee2c1b87a890c834874c8cbb7f4176a61 (patch)
tree35b4c506b2e124f3662a5447174f9252358683bc /gcc/cpp.texi
parent08b8ada91a816cf32b6abee9a8879f1efb6d34c9 (diff)
downloadgcc-f3444faee2c1b87a890c834874c8cbb7f4176a61.tar.gz
* cpp.texi: Fix some typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26922 138bc75d-0d04-0410-961f-82ee72b054a4
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 47a50dafe7e..7552cf97d61 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++ != ' ') @{ \