]> git.saurik.com Git - bison.git/blobdiff - src/symtab.c
Remove a dead item.
[bison.git] / src / symtab.c
index 12aabb7219157a96264680bbd4d0b9348f410b1b..598f8ee2b415d46a2802856e194ab51732b39ebd 100644 (file)
@@ -35,16 +35,13 @@ symbol_new (const char *tag)
 
   res->tag = xstrdup (tag);
   res->type_name = NULL;
-  res->number = -1;
+  res->number = NUMBER_UNDEFINED;
   res->prec = 0;
   res->assoc = right_assoc;
   res->user_token_number = SUNDEF;
   res->alias = NULL;
   res->class = unknown_sym;
 
-  if (getenv ("DEBUG"))
-    fprintf (stderr, "Creating: nsyms = %d, ntokens = %d: %s\n",
-            nsyms, ntokens, tag);
   nsyms++;
 
   return res;