+2001-05-01 Per Bothner <per@bothner.com>
+
+ * parse.h (REGISTER_IMPORT): Use tree_cons instead of chainon.
+
2001-05-01 Per Bothner <per@bothner.com>
* parse.y (java_pop_parser_context): The TREE_VALUE of a link in the
#define REGISTER_IMPORT(WHOLE, NAME) \
{ \
IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P ((NAME)) = 1; \
- ctxp->import_list = chainon (ctxp->import_list, \
- build_tree_list ((WHOLE), (NAME))); \
+ ctxp->import_list = tree_cons ((WHOLE), (NAME), ctxp->import_list); \
}
/* Macro to access the osb (opening square bracket) count */