aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>1999-04-11 11:38:32 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-04-11 11:38:32 +0000
commitc45df9c1247cc54ef2fafa00aa22094e91c86eff (patch)
tree4a61c7538619f74d75f5e4f9ebaba9b75d65faeb
parent0383465ab5d76d5589cc90ee886eb8cd867eb850 (diff)
downloadgcc-c45df9c1247cc54ef2fafa00aa22094e91c86eff.zip
gcc-c45df9c1247cc54ef2fafa00aa22094e91c86eff.tar.gz
gcc-c45df9c1247cc54ef2fafa00aa22094e91c86eff.tar.bz2
* decl.c (push_binding): Fix typo in comment.
From-SVN: r26349
-rw-r--r--gcc/cp/ChangeLog4
-rw-r--r--gcc/cp/decl.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 4d1db9c..8d04a2d 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,7 @@
+1999-04-11 Mark Mitchell <mark@codesourcery.com>
+
+ * decl.c (push_binding): Fix typo in comment.
+
1999-04-10 Mark Mitchell <mark@codesourcery.com>
* error.c (dump_type_real): If a typename is a template-id, put
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c
index 1ee61fc..c233079 100644
--- a/gcc/cp/decl.c
+++ b/gcc/cp/decl.c
@@ -1100,7 +1100,7 @@ push_binding (id, decl, level)
INHERITED_VALUE_BINDING_P (binding) = 0;
LOCAL_BINDING_P (binding) = (level != class_binding_level);
- /* And put it on the front of the ilst of bindings for ID. */
+ /* And put it on the front of the list of bindings for ID. */
TREE_CHAIN (binding) = IDENTIFIER_BINDING (id);
IDENTIFIER_BINDING (id) = binding;
}