aboutsummaryrefslogtreecommitdiff
path: root/gdb/ada-lex.l
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-03-24 18:07:00 -0600
committerTom Tromey <tom@tromey.com>2019-04-04 19:55:11 -0600
commit8621b685bfdcb8773b8177fb2b89e45499902868 (patch)
tree843765b0588efca85780159f17fa8e71eb7311ff /gdb/ada-lex.l
parent28aaf3fdf9562c018dcf6ab4d0a4c644fff8d696 (diff)
downloadbinutils-8621b685bfdcb8773b8177fb2b89e45499902868.zip
binutils-8621b685bfdcb8773b8177fb2b89e45499902868.tar.gz
binutils-8621b685bfdcb8773b8177fb2b89e45499902868.tar.bz2
Move comma_terminates global to parser_state
This moves the comma_terminates global to parser_state. gdb/ChangeLog 2019-04-04 Tom Tromey <tom@tromey.com> * rust-exp.y (rustyylex, rust_lex_tests): Update. * parser-defs.h (struct parser_state) <parser_state>: Add new parameter. <comma_terminates>: New member. (comma_terminates): Don't declare global. * parse.c (comma_terminates): Remove global. (parse_exp_in_context): Update. * p-exp.y (yylex): Update. * m2-exp.y (yylex): Update. * go-exp.y (lex_one_token): Update. * f-exp.y (yylex): Update. * d-exp.y (lex_one_token): Update. * c-exp.y (lex_one_token): Update. * ada-lex.l: Update.
Diffstat (limited to 'gdb/ada-lex.l')
-rw-r--r--gdb/ada-lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ada-lex.l b/gdb/ada-lex.l
index 6163405..43bd25c 100644
--- a/gdb/ada-lex.l
+++ b/gdb/ada-lex.l
@@ -232,7 +232,7 @@ false { return FALSEKEYWORD; }
[-&*+./:<>=|;\[\]] { return yytext[0]; }
-"," { if (paren_depth == 0 && comma_terminates)
+"," { if (paren_depth == 0 && pstate->comma_terminates)
{
rewind_to_char (',');
return 0;