diff options
-rw-r--r-- | gdb/ada-lex.l | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/ada-lex.l b/gdb/ada-lex.l index 9e35776..ea35c7a 100644 --- a/gdb/ada-lex.l +++ b/gdb/ada-lex.l @@ -265,7 +265,7 @@ false { return FALSEKEYWORD; } <BEFORE_QUAL_QUOTE>"'"/{NOT_COMPLETE} { BEGIN INITIAL; return '\''; } -[-&*+./:<>=|;\[\]] { return yytext[0]; } +[-&*+{}@/:<>=|;\[\]] { return yytext[0]; } "," { if (paren_depth == 0 && pstate->comma_terminates) { @@ -319,8 +319,6 @@ false { return FALSEKEYWORD; } "::" { return COLONCOLON; } -[{}@] { return yytext[0]; } - /* REGISTERS AND GDB CONVENIENCE VARIABLES */ "$"({LETTER}|{DIG}|"$")* { |