]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* decl.c (push_binding): Fix typo in comment.
authorMark Mitchell <mark@codesourcery.com>
Sun, 11 Apr 1999 11:38:32 +0000 (11:38 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sun, 11 Apr 1999 11:38:32 +0000 (11:38 +0000)
From-SVN: r26349

gcc/cp/ChangeLog
gcc/cp/decl.c

index 4d1db9c800ed4c73ee1d3f752319aa5f2c4c5300..8d04a2d911c76a394243b0330d41957169cd1e2c 100644 (file)
@@ -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
index 1ee61fc7c530cbcbeeadbf0779816650df8c3dd0..c233079e9b5644665635b7e566d8272df6024e75 100644 (file)
@@ -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;
 }