* thread.c (info_threads_command): Use get_selected_frame ().
[deliverable/binutils-gdb.git] / binutils / deflex.l
index 928c42c6b9fee46abdf70cd40a0a6b2c72f9a4ab..d4888bc9b414c040879694ba1a926823eb224cc8 100644 (file)
@@ -1,6 +1,6 @@
 %{/* deflex.l - Lexer for .def files */
 
-/*   Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
+/*   Copyright 1995, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
 
@@ -61,7 +61,7 @@ int linenumber;
 [0-9][x0-9A-Fa-f]* { yylval.number = strtol (yytext,0,0); 
                return NUMBER; }
 
-[A-Za-z$:\-\_?][A-Za-z0-9/$:\-\_@?]+ {         
+(@)?[A-Za-z$:\-\_?][A-Za-z0-9/$:\-\_@?]* {     
                yylval.id =  xstrdup (yytext);
                return ID;
                }
This page took 0.025428 seconds and 4 git commands to generate.