* xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the parameters
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 14 Sep 2010 00:08:02 +0000 (02:08 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 14 Sep 2010 00:08:02 +0000 (02:08 +0200)
for the doc string.

From  Leo  <sdl.web@gmail.com>  (tiny change)

src/ChangeLog
src/xml.c

index 87b5452..f2dc725 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-14  Leo  <sdl.web@gmail.com>  (tiny change)
+
+       * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
+       parameters for the doc string.
+
 2010-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
index c1098b1..1087e50 100644 (file)
--- a/src/xml.c
+++ b/src/xml.c
@@ -112,7 +112,8 @@ DEFUN ("html-parse-string", Fhtml_parse_string, Shtml_parse_string,
        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)
+     (string, base_url)
+     Lisp_Object string, base_url;
 {
   return parse_buffer (string, base_url, 1);
 }
@@ -122,7 +123,8 @@ DEFUN ("xml-parse-string", Fxml_parse_string, Sxml_parse_string,
        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)
+     (string, base_url)
+     Lisp_Object string, base_url;
 {
   return parse_buffer (string, base_url, 0);
 }