These files removed.
[deliverable/binutils-gdb.git] / binutils / rclex.c
index 5922106a0e453e859a30e0b35f3a597dc60eef6e..4fae3da51275cbc36ace1320ca537322278513d7 100644 (file)
@@ -844,7 +844,11 @@ yylex (void)
        default:
          if (ISIDST (ch) || ch=='$')
            {
-             while ((ch = rclex_peekch ()) != -1 && (ISIDNUM (ch) || ch == '$' || ch == '.'))
+             while ((ch = rclex_peekch ()) != -1
+                    && (ISIDNUM (ch) || ch == '$' || ch == '.'
+                        || ch == ':' || ch == '\\' || ch == '/'
+                        || ch == '_' || ch == '-')
+                   )
                rclex_readch ();
              ch = IGNORE_CPP (rclex_translatekeyword (rclex_tok));
              if (ch == STRING)
This page took 0.022734 seconds and 4 git commands to generate.