diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-25 19:40:53 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-25 19:40:53 +0000 |
commit | fd6efe25d15bab7eb1470cbc2d6fe5958cc5851e (patch) | |
tree | 19bb862296df17f64d83291dca5b3c45e5bdcda3 /gcc/protoize.c | |
parent | a9035bc4ffc937be27c8ba091d17cb7e8cb43698 (diff) | |
download | ppe42-gcc-fd6efe25d15bab7eb1470cbc2d6fe5958cc5851e.tar.gz ppe42-gcc-fd6efe25d15bab7eb1470cbc2d6fe5958cc5851e.zip |
Update comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8811 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index f4c92f34546..823afcdcbff 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -1,5 +1,5 @@ /* Protoize program - Original version by Ron Guilmette at MCC. - Copyright (C) 1989, 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -812,7 +812,7 @@ restore_pointers () repl_write_ptr = saved_repl_write_ptr; } -/* Return true if the given character is a legal identifier character. */ +/* Return true if the given character is a valid identifier character. */ static int is_id_char (ch) @@ -3486,7 +3486,7 @@ find_rightmost_formals_list (clean_text_p) sure that this is in fact the right paren that we were looking for. The one we were looking for *must* be followed by either a '{' or - by an alphabetic character, while others *cannot* legally be followed + by an alphabetic character, while others *cannot* validly be followed by such characters. */ if ((ch == '{') || isalpha (ch)) |