* sparc-tdep.c (sparc32_do_push_arguments): New function.
[deliverable/binutils-gdb.git] / binutils / rclex.l
index 6e29e622d0897ac304ca7a0539a34f5e197461e6..3a4f3e1df8e03b95f7b2109593cf561fe59d3536 100644 (file)
@@ -196,7 +196,7 @@ static char *get_string PARAMS ((int));
                          MAYBE_RETURN (NUMBER);
                        }
 
-("\""[^\"\n]*"\""[ \t]*)+ {
+("\""[^\"\n]*"\""[ \t\n]*)+ {
                          char *s;
                          unsigned long length;
 
@@ -425,7 +425,11 @@ handle_quotes (input, len)
          ++t;
          assert (ISSPACE (*t));
          while (ISSPACE (*t))
-           ++t;
+           {
+             if ((*t) == '\n')
+               ++rc_lineno;
+             ++t;
+           }
          if (*t == '\0')
            break;
          assert (*t == '"');
@@ -452,7 +456,7 @@ get_string (len)
   as->s = xmalloc (len);
 
   as->next = strings;
-  strings = as->next;
+  strings = as;
 
   return as->s;
 }
This page took 0.053625 seconds and 4 git commands to generate.