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