diff options
| author | Vibhav Pant | 2023-06-06 19:30:27 +0530 |
|---|---|---|
| committer | Vibhav Pant | 2023-06-06 19:30:27 +0530 |
| commit | 49ffcbf86a32a8a217538d4df3736fe069ccf35d (patch) | |
| tree | a5f16157cc20fb19a844473a6fbd2b434f4c8260 /src/xml.c | |
| parent | af569fa3d90a717983b743eb97adbf869c6d1736 (diff) | |
| parent | 7ca1d782f5910d0c3978c6798a45c6854ec668c7 (diff) | |
| download | emacs-49ffcbf86a32a8a217538d4df3736fe069ccf35d.tar.gz emacs-49ffcbf86a32a8a217538d4df3736fe069ccf35d.zip | |
Merge branch 'master' into scratch/comp-static-data
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. */) |