diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2003-11-15 18:24:36 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2003-11-15 18:24:36 +0000 |
commit | 8d7b5c7ecdebc775257495bcdaa855916f2dfbb0 (patch) | |
tree | 77bd4bf875dbc3c6255e2d4f82732e1dde3ef69e /include | |
parent | 485fa4baacbae47a378b874d85f2c6df0a267026 (diff) | |
download | libxml2-8d7b5c7ecdebc775257495bcdaa855916f2dfbb0.tar.gz |
fixed some wording make sure doc/examples is packaged fixed the really
* Copyright: fixed some wording
* libxml.spec.in: make sure doc/examples is packaged
* include/libxml/tree.h valid.c xmlreader.c: fixed the really
annoying problem about xmlRemoveID and xmlReader streaming.
Thing looks fixed now, add to add a doc reference to the
xmlID structure though...
Daniel
Diffstat (limited to 'include')
-rw-r--r-- | include/libxml/tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libxml/tree.h b/include/libxml/tree.h index 4c57877f..82b757ab 100644 --- a/include/libxml/tree.h +++ b/include/libxml/tree.h @@ -390,6 +390,7 @@ struct _xmlID { xmlAttrPtr attr; /* The attribute holding it */ const xmlChar *name; /* The attribute if attr is not available */ int lineno; /* The line number if attr is not available */ + struct _xmlDoc *doc; /* The document holding the ID */ }; /** |