* repo.c (extract_string): Reset backquote after one character.
(get_base_filename): Fix indentation.
From-SVN: r86538
+2004-08-25 Adam Nemet <anemet@lnxw.com>
+
+ * repo.c (extract_string): Reset backquote after one character.
+ (get_base_filename): Fix indentation.
+
2004-08-24 Nathan Sidwell <nathan@codesourcery.com>
* cp/decl.c (cxx_init_decl_processing): Adjust
break;
++p;
if (backquote)
- obstack_1grow (&temporary_obstack, c);
+ {
+ obstack_1grow (&temporary_obstack, c);
+ backquote = 0;
+ }
else if (! inside && c == ' ')
break;
else if (! inside && c == '\\')
output = extract_string (&p);
else if (strcmp (q, "-c") == 0)
compiling = 1;
- }
+ }
if (compiling && output)
return output;