From: Akim Demaille <demaille@gostai.com>
Date: Sat, 16 Aug 2008 13:01:31 +0000 (+0200)
Subject: Comment changes.
X-Git-Tag: v2.7.90~1096
X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/b3a28fd4e9759a31a71cce19f12a6fb49ebb0ff4?ds=sidebyside

Comment changes.
---

diff --git a/ChangeLog b/ChangeLog
index 0f64fe1b..ed87b06d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-11-10  Akim Demaille  <demaille@gostai.com>
+
+	Comment changes.
+
 2008-11-10  Akim Demaille  <demaille@gostai.com>
 
 	Use "enum" for integral constants.
diff --git a/src/symtab.c b/src/symtab.c
index 1db83f63..13b75549 100644
--- a/src/symtab.c
+++ b/src/symtab.c
@@ -836,9 +836,8 @@ symbols_token_translations_init (void)
   token_translations = xnmalloc (max_user_token_number + 1,
 				 sizeof *token_translations);
 
-  /* Initialize all entries for literal tokens to 2, the internal
-     token number for $undefined, which represents all invalid inputs.
-     */
+  /* Initialize all entries for literal tokens to the internal token
+     number for $undefined, which represents all invalid inputs.  */
   for (i = 0; i < max_user_token_number + 1; i++)
     token_translations[i] = undeftoken->number;
   symbols_do (symbol_translation_processor, NULL);