aboutsummaryrefslogtreecommitdiffstats
path: root/src/xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml.c')
-rw-r--r--src/xml.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/xml.c b/src/xml.c
index b55ac62cdd3..b4c849e6a65 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -280,7 +280,10 @@ DEFUN ("libxml-parse-html-region", Flibxml_parse_html_region,
280If START is nil, it defaults to `point-min'. If END is nil, it 280If START is nil, it defaults to `point-min'. If END is nil, it
281defaults to `point-max'. 281defaults to `point-max'.
282 282
283If BASE-URL is non-nil, it is used to expand relative URLs. 283If BASE-URL is non-nil, it is used if and when reporting errors and
284warnings from the underlying libxml2 library. Currently, errors and
285warnings from the library are suppressed, so this argument is largely
286ignored.
284 287
285If you want comments to be stripped, use the `xml-remove-comments' 288If you want comments to be stripped, use the `xml-remove-comments'
286function to strip comments before calling this function. */) 289function to strip comments before calling this function. */)
@@ -298,7 +301,10 @@ DEFUN ("libxml-parse-xml-region", Flibxml_parse_xml_region,
298If START is nil, it defaults to `point-min'. If END is nil, it 301If START is nil, it defaults to `point-min'. If END is nil, it
299defaults to `point-max'. 302defaults to `point-max'.
300 303
301If BASE-URL is non-nil, it is used to expand relative URLs. 304If BASE-URL is non-nil, it is used if and when reporting errors and
305warnings from the underlying libxml2 library. Currently, errors and
306warnings from the library are suppressed, so this argument is largely
307ignored.
302 308
303If you want comments to be stripped, use the `xml-remove-comments' 309If you want comments to be stripped, use the `xml-remove-comments'
304function to strip comments before calling this function. */) 310function to strip comments before calling this function. */)