mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
Accept the + character as part of filenames for MRI scripts.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2022-03-31 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* arlex.l: Accept the plus character as part of a filename.
|
||||||
|
|
||||||
2022-03-16 Fangrui Song <maskray@google.com>
|
2022-03-16 Fangrui Song <maskray@google.com>
|
||||||
|
|
||||||
PR binutils/28926
|
PR binutils/28926
|
||||||
|
@ -78,7 +78,7 @@ int linenumber;
|
|||||||
"(" { return '('; }
|
"(" { return '('; }
|
||||||
")" { return ')'; }
|
")" { return ')'; }
|
||||||
"," { return ','; }
|
"," { return ','; }
|
||||||
[A-Za-z0-9/\\$:.\-\_]+ {
|
[A-Za-z0-9/\\$:.\-\_\+]+ {
|
||||||
yylval.name = xstrdup (yytext);
|
yylval.name = xstrdup (yytext);
|
||||||
return FILENAME;
|
return FILENAME;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user