]> git.saurik.com Git - bison.git/blobdiff - src/symtab.c
* src/LR0.c (new_state, get_state): Instead of using the global
[bison.git] / src / symtab.c
index 12aabb7219157a96264680bbd4d0b9348f410b1b..c255a8f3c00df8be16fd8d2ea258ec01a46840d3 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->user_token_number = USER_NUMBER_UNDEFINED;
   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;