diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-10-09 06:03:16 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-10-09 06:03:16 +0000 |
commit | 4fe9b91c45b7b0ba4b02069f821e64fd572ce950 (patch) | |
tree | 5f5de869671afe0860dba99e31812a0a95a46c55 /gcc/cpplex.c | |
parent | 908fecca8cba9118747951b2d9883b8abd4a94b6 (diff) | |
download | gcc-4fe9b91c45b7b0ba4b02069f821e64fd572ce950.zip gcc-4fe9b91c45b7b0ba4b02069f821e64fd572ce950.tar.gz gcc-4fe9b91c45b7b0ba4b02069f821e64fd572ce950.tar.bz2 |
c-common.c: Fix comment typos.
* c-common.c: Fix comment typos.
* cfgrtl.c: Likewise.
* collect2.c: Likewise.
* cpplex.c: Likewise.
* doloop.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* gcc.c: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* global.c: Likewise.
* ifcvt.c: Likewise.
* loop.c: Likewise.
* optabs.c: Likewise.
* protoize.c: Likewise.
* regclass.c: Likewise.
* reorg.c: Likewise.
* rtl.h: Likewise.
* stmt.c: Likewise.
* tree.h: Likewise.
* doc/cpp.texi: Likewise.
* doc/c-tree.texi: Likewise.
* doc/extend.texi: Likewise.
* doc/invoke.texi: Likewise.
* doc/objc.texi: Likewise.
* doc/tm.texi: Likewise.
From-SVN: r46114
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 02bf7c6..3ea3261 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -575,7 +575,7 @@ parse_identifier_slow (pfile, cur) /* Remember the next character. */ buffer->read_ahead = c; - /* $ is not a identifier character in the standard, but is commonly + /* $ is not an identifier character in the standard, but is commonly accepted as an extension. Don't warn about it in skipped conditional blocks. */ if (saw_dollar && CPP_PEDANTIC (pfile) && ! pfile->state.skipping) @@ -2126,7 +2126,7 @@ _cpp_get_buff (pfile, min_size) return result; } -/* Creates a new buffer with enough space to hold the the uncommitted +/* Creates a new buffer with enough space to hold the uncommitted remaining bytes of BUFF, and at least MIN_EXTRA more bytes. Copies the excess bytes to the new buffer. Chains the new buffer after BUFF, and returns the new buffer. */ @@ -2144,7 +2144,7 @@ _cpp_append_extend_buff (pfile, buff, min_extra) return new_buff; } -/* Creates a new buffer with enough space to hold the the uncommitted +/* Creates a new buffer with enough space to hold the uncommitted remaining bytes of the buffer pointed to by BUFF, and at least MIN_EXTRA more bytes. Copies the excess bytes to the new buffer. Chains the new buffer before the buffer pointed to by BUFF, and |