diff options
author | Tom Tromey <tromey@redhat.com> | 2012-12-07 20:05:15 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-12-07 20:05:15 +0000 |
commit | 155da5173d74221a3099c22c27de1e8e2214982b (patch) | |
tree | 2d9b79cc51defeda92a300138d8a020590a1b0f4 /gdb/p-exp.y | |
parent | 4fc5d43ea6b0f1ae45c2819f9b15d2cafe2f27b7 (diff) | |
download | gdb-155da5173d74221a3099c22c27de1e8e2214982b.zip gdb-155da5173d74221a3099c22c27de1e8e2214982b.tar.gz gdb-155da5173d74221a3099c22c27de1e8e2214982b.tar.bz2 |
* expression.h (parse_expression_for_completion): Rename
from parse_field_expression.
(parse_completion): Rename from in_parse_field.
* c-exp.y (lex_one_token): Update.
* completer.c (expression_completer): Update.
* go-exp.y (lex_one_token): Update.
* p-exp.y (yylex): Update.
* parse.c (parse_completion): Rename from in_parse_field.
(parse_exp_in_context): Update.
(parse_expression_for_completion): Rename from
parse_field_expression. Update.
Diffstat (limited to 'gdb/p-exp.y')
-rw-r--r-- | gdb/p-exp.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/p-exp.y b/gdb/p-exp.y index 5d344a4..4c0cc57 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -1237,7 +1237,7 @@ yylex (void) /* Might be a floating point number. */ if (lexptr[1] < '0' || lexptr[1] > '9') { - if (in_parse_field) + if (parse_completion) last_was_structop = 1; goto symbol; /* Nope, must be a symbol. */ } @@ -1529,7 +1529,7 @@ yylex (void) if (search_field && current_type) is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL); - if (is_a_field || in_parse_field) + if (is_a_field || parse_completion) sym = NULL; else sym = lookup_symbol (tmp, expression_context_block, @@ -1544,7 +1544,7 @@ yylex (void) } if (search_field && current_type) is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL); - if (is_a_field || in_parse_field) + if (is_a_field || parse_completion) sym = NULL; else sym = lookup_symbol (tmp, expression_context_block, @@ -1572,7 +1572,7 @@ yylex (void) } if (search_field && current_type) is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL); - if (is_a_field || in_parse_field) + if (is_a_field || parse_completion) sym = NULL; else sym = lookup_symbol (tmp, expression_context_block, |