diff options
author | Jakub Jelinek <jakub@redhat.com> | 2001-11-05 16:20:37 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2001-11-05 16:20:37 +0000 |
commit | 5e9520c87752aaf3f7920cc231ca50245c364a38 (patch) | |
tree | 1f931e9c2675531d0a4b51df3805fb338867e724 /binutils/arlex.l | |
parent | 54589086a88ece0455faf23010d847b1c9fefa54 (diff) | |
download | binutils-gdb-5e9520c87752aaf3f7920cc231ca50245c364a38.tar.gz |
* arlex.l: Accept `\' in filenames. Patch by <earl_chew@agilent.com>.
* arsup.c (ar_open): Prepend tmp- to basename, not whole path.
Diffstat (limited to 'binutils/arlex.l')
-rw-r--r-- | binutils/arlex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/arlex.l b/binutils/arlex.l index 71ef56ee6f9..4e2895cdc9c 100644 --- a/binutils/arlex.l +++ b/binutils/arlex.l @@ -71,7 +71,7 @@ int linenumber; "(" { return '('; } ")" { return ')'; } "," { return ','; } -[A-Za-z0-9/$:.\-\_]+ { +[A-Za-z0-9/\\$:.\-\_]+ { yylval.name = xstrdup (yytext); return FILENAME; } |