diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-13 01:25:49 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-13 01:25:49 +0000 |
commit | f3444faee2c1b87a890c834874c8cbb7f4176a61 (patch) | |
tree | 35b4c506b2e124f3662a5447174f9252358683bc | |
parent | 08b8ada91a816cf32b6abee9a8879f1efb6d34c9 (diff) | |
download | gcc-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
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cpp.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 24c75b9cf64..4f9a2ef6d02 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 <GrahamS@RCP.co.uk> * loop.c (maybe_eliminate_biv): Check regno against 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++ != ' ') @{ \ |