fix for 67457
This commit is contained in:
idk%eng.sun.com 2001-04-12 19:56:55 +00:00
Родитель ac5110f0a2
Коммит c46e9db94f
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -755,6 +755,10 @@ attribute_declaration(TreeState *state)
gboolean method_noscript =
(IDL_tree_property_get(ATTR_PROPS(state->tree), "noscript") != NULL);
gboolean method_notxpcom =
(IDL_tree_property_get(ATTR_PROPS(state->tree), "notxpcom") != NULL);
GSList *doc_comments =
IDL_IDENT(IDL_LIST(IDL_ATTR_DCL
(state->tree).simple_declarations).data).comments;
@ -763,6 +767,7 @@ attribute_declaration(TreeState *state)
fputs(" ", FILENAME(state));
printlist(FILENAME(state), doc_comments);
}
#if 0
/*
@ -777,6 +782,9 @@ attribute_declaration(TreeState *state)
fputc('\n', FILENAME(state));
write_comment(state);
if (method_notxpcom || method_noscript)
return TRUE;
state->tree = ATTR_TYPE_DECL(state->tree);
/*