Commit fa322ab5 by Tom Tromey Committed by Tom Tromey

parse.y (DIR_SEPARATOR): New define.

	* parse.y (DIR_SEPARATOR): New define.
	(check_class_interface_creation): Use it.

From-SVN: r24367
parent 21f891de
1998-12-17 Tom Tromey <tromey@cygnus.com>
* parse.y (DIR_SEPARATOR): New define.
(check_class_interface_creation): Use it.
* parse-scan.y (report_main_declaration): Recognize
`java.lang.String' in argument to main.
......
......@@ -70,6 +70,10 @@ definitions and other extensions. */
#include "convert.h"
#include "buffer.h"
#ifndef DIR_SEPARATOR
#define DIR_SEPARATOR '/'
#endif
/* Local function prototypes */
static char *java_accstring_lookup PROTO ((int));
static void classitf_redefinition_error PROTO ((char *,tree, tree, tree));
......@@ -2778,7 +2782,9 @@ check_class_interface_creation (is_interface, flags, raw_name, qualified_name, d
/* Contains OS dependent assumption on path separator. FIXME */
for (f = &input_filename [strlen (input_filename)];
f != input_filename && f[0] != '/'; f--);
f != input_filename && f[0] != '/' && f[0] != DIR_SEPARATOR;
f--)
;
if (f[0] == '/')
f++;
if (strncmp (IDENTIFIER_POINTER (raw_name),
......
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