diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-21 02:19:44 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-21 02:19:44 +0000 |
commit | ee142fe7a851ca197ec02aad9a8e4ab53a543e6c (patch) | |
tree | 160aaaaeb0c2822ce3be579946a81e16f1aafb30 /gcc/java/class.c | |
parent | 42a6388c3ff9645a7b95fbc1075dbcf20b2a18e0 (diff) | |
download | gcc-ee142fe7a851ca197ec02aad9a8e4ab53a543e6c.zip gcc-ee142fe7a851ca197ec02aad9a8e4ab53a543e6c.tar.gz gcc-ee142fe7a851ca197ec02aad9a8e4ab53a543e6c.tar.bz2 |
ChangeLog: Follow spelling conventions.
* ChangeLog: Follow spelling conventions.
* class.c: Likewise.
* decl.c: Likewise.
* expr.c: Likewise.
* gjavah.c: Likewise.
* java-tree.h: Likewise.
* jcf-dump.c: Likewise.
* jcf-parse.c: Likewise.
* jvspec.c: Likewise.
* lang.c: Likewise.
* mangle.c: Likewise.
* parse.y: Likewise.
From-SVN: r57378
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index e167e0d..ca7acf0 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -75,7 +75,7 @@ typedef struct assume_compiled_node_struct /* The class or package name. */ const char *ident; - /* Non-zero if this represents an exclusion. */ + /* Nonzero if this represents an exclusion. */ int excludep; /* Pointers to other nodes in the tree. */ @@ -141,7 +141,7 @@ find_assume_compiled_node (node, ident) } /* Add a new IDENT to the include/exclude tree. It's an exclusion - if EXCLUDEP is non-zero. */ + if EXCLUDEP is nonzero. */ void add_assume_compiled (ident, excludep) @@ -192,7 +192,7 @@ add_assume_compiled (ident, excludep) parent->child = node; } -/* Returns non-zero if IDENT is the name of a class that the compiler +/* Returns nonzero if IDENT is the name of a class that the compiler should assume has been compiled to FIXME */ static int |