Comment changes.

This commit is contained in:
Akim Demaille
2008-08-16 15:01:31 +02:00
parent 914202bdac
commit b3a28fd4e9
2 changed files with 6 additions and 3 deletions

View File

@@ -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.

View File

@@ -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);