Commit 6154f4fd by Adam Nemet Committed by Adam Nemet

repo.c (extract_string): Reset backquote after one character.

	* repo.c (extract_string): Reset backquote after one character.
	(get_base_filename): Fix indentation.

From-SVN: r86538
parent 51a904c9
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
......
......@@ -68,7 +68,10 @@ extract_string (char **pp)
break;
++p;
if (backquote)
{
obstack_1grow (&temporary_obstack, c);
backquote = 0;
}
else if (! inside && c == ' ')
break;
else if (! inside && c == '\\')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment