Move comma_terminates global to parser_state
[external/binutils.git] / gdb / f-exp.y
index 100a3bb..522751d 100644 (file)
@@ -1115,7 +1115,7 @@ yylex (void)
       return c;
       
     case ',':
-      if (comma_terminates && paren_depth == 0)
+      if (pstate->comma_terminates && paren_depth == 0)
        return 0;
       lexptr++;
       return c;