]> git.eshelyaron.com Git - emacs.git/commitdiff
* xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 12 Sep 2010 17:16:25 +0000 (19:16 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 12 Sep 2010 17:16:25 +0000 (19:16 +0200)
src/ChangeLog
src/xml.c

index c866258c6fed8d39b362bdf424da42bb36292193..87b54529f2e95a00d284a18317919a53974c324d 100644 (file)
@@ -1,3 +1,7 @@
+2010-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
+
 2010-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * fns.c (Fy_or_n_p): Move to lisp/subr.el.
index a38795cc2456dc415d5db1ced46bd16c77d03ab3..c1098b15a2011df9b221eb2d261e311f902696b0 100644 (file)
--- a/src/xml.c
+++ b/src/xml.c
@@ -109,7 +109,9 @@ parse_buffer (Lisp_Object string, Lisp_Object base_url, int htmlp)
 
 DEFUN ("html-parse-string", Fhtml_parse_string, Shtml_parse_string,
        0, 2, 0,
-       doc: /* Parse the string as an HTML document and return the parse tree.*/)
+       doc: /* Parse the string as an HTML document and return the parse tree.
+If BASE-URL is non-nil, it will be used to expand relative URLs in
+the HTML document.*/)
   (Lisp_Object string, Lisp_Object base_url)
 {
   return parse_buffer (string, base_url, 1);
@@ -117,7 +119,9 @@ DEFUN ("html-parse-string", Fhtml_parse_string, Shtml_parse_string,
 
 DEFUN ("xml-parse-string", Fxml_parse_string, Sxml_parse_string,
        0, 2, 0,
-       doc: /* Parse the string as an XML document and return the parse tree.*/)
+       doc: /* Parse the string as an XML document and return the parse tree.
+If BASE-URL is non-nil, it will be used to expand relative URLs in
+the XML document.*/)
   (Lisp_Object string, Lisp_Object base_url)
 {
   return parse_buffer (string, base_url, 0);