Commit fe0e4d76 by Alexandre Petit-Bianco Committed by Alexandre Petit-Bianco

parse.y (note_possible_classname): Mark returned node with QUALIFIED_P only if…

parse.y (note_possible_classname): Mark returned node with QUALIFIED_P only if the original class name contained a '/'.

Mon Jun  7 16:09:51 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
	* parse.y (note_possible_classname): Mark returned node with
 	QUALIFIED_P only if the original class name contained a '/'.

From-SVN: r27396
parent bfec1a84
Mon Jun 7 16:09:51 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (note_possible_classname): Mark returned node with
QUALIFIED_P only if the original class name contained a '/'.
Sat Jun 5 11:46:59 1999 Anthony Green <green@cygnus.com> Sat Jun 5 11:46:59 1999 Anthony Green <green@cygnus.com>
* Make-lang.in (gcjh): More parallel build fixes. * Make-lang.in (gcjh): More parallel build fixes.
......
...@@ -7621,7 +7621,7 @@ note_possible_classname (name, len) ...@@ -7621,7 +7621,7 @@ note_possible_classname (name, len)
return 0; return 0;
node = ident_subst (name, len, "", '/', '.', ""); node = ident_subst (name, len, "", '/', '.', "");
IS_A_CLASSFILE_NAME (node) = 1; /* Or soon to be */ IS_A_CLASSFILE_NAME (node) = 1; /* Or soon to be */
QUALIFIED_P (node) = 1; /* As soon as we turn / into . */ QUALIFIED_P (node) = strchr (name, '/') ? 1 : 0;
return 1; return 1;
} }
......
...@@ -5036,7 +5036,7 @@ note_possible_classname (name, len) ...@@ -5036,7 +5036,7 @@ note_possible_classname (name, len)
return 0; return 0;
node = ident_subst (name, len, "", '/', '.', ""); node = ident_subst (name, len, "", '/', '.', "");
IS_A_CLASSFILE_NAME (node) = 1; /* Or soon to be */ IS_A_CLASSFILE_NAME (node) = 1; /* Or soon to be */
QUALIFIED_P (node) = 1; /* As soon as we turn / into . */ QUALIFIED_P (node) = strchr (name, '/') ? 1 : 0;
return 1; return 1;
} }
......
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