summaryrefslogtreecommitdiff
path: root/gcc/cpplex.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-09 06:03:16 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-09 06:03:16 +0000
commit20dd417af30c7acc30f73bad9adf49073e48e6af (patch)
tree5f5de869671afe0860dba99e31812a0a95a46c55 /gcc/cpplex.c
parenta26c43b2bf728f8eb14bd1f711e535a1fba3f484 (diff)
downloadgcc-20dd417af30c7acc30f73bad9adf49073e48e6af.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46114 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r--gcc/cpplex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c
index 02bf7c66486..3ea32612d24 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