mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[dom] enum sgml_parser_flag -> unsigned int
This commit is contained in:
parent
2764b531ea
commit
12e09622eb
@ -681,7 +681,7 @@ static struct dom_stack_context_info sgml_parser_context_info = {
|
||||
|
||||
struct sgml_parser *
|
||||
init_sgml_parser(enum sgml_parser_type type, enum sgml_document_type doctype,
|
||||
struct dom_string *uri, enum sgml_parser_flag flags)
|
||||
struct dom_string *uri, /*enum sgml_parser_flag*/ unsigned int flags)
|
||||
{
|
||||
struct sgml_parser *parser;
|
||||
enum dom_stack_flag stack_flags = 0;
|
||||
|
@ -83,7 +83,7 @@ typedef enum dom_code
|
||||
*/
|
||||
struct sgml_parser {
|
||||
enum sgml_parser_type type; /**< Stream or tree */
|
||||
enum sgml_parser_flag flags; /**< Flags that control the behaviour */
|
||||
/*enum sgml_parser_flag*/ unsigned int flags; /**< Flags that control the behaviour */
|
||||
|
||||
struct sgml_info *info; /**< Backend dependent info */
|
||||
|
||||
@ -112,7 +112,7 @@ struct sgml_parser {
|
||||
*/
|
||||
struct sgml_parser *
|
||||
init_sgml_parser(enum sgml_parser_type type, enum sgml_document_type doctype,
|
||||
struct dom_string *uri, enum sgml_parser_flag flags);
|
||||
struct dom_string *uri, /*enum sgml_parser_flag*/ unsigned int flags);
|
||||
|
||||
/** Release an SGML parser
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user