]> git.eshelyaron.com Git - emacs.git/commitdiff
* xml.c (Fxml_parse_string, Fxml_parse_string): Revert last
authorAndreas Schwab <schwab@linux-m68k.org>
Tue, 14 Sep 2010 07:53:39 +0000 (09:53 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Tue, 14 Sep 2010 07:53:39 +0000 (09:53 +0200)
change.  Don't make first argument optional.  Doc fix.

src/ChangeLog
src/xml.c

index f2dc725d045a5ecee61ed1002d95205767adeb79..fa0dfc79c5bb734d5c37aa728aeff9e08339d481 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-14  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last
+       change.  Don't make first argument optional.  Doc fix.
+
 2010-09-14  Leo  <sdl.web@gmail.com>  (tiny change)
 
        * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
index 1087e504d5f9b7bac5f5c791185b1cbac9a1ff9a..eb844950d05ea90c5ee7486503c93a721f94f819 100644 (file)
--- a/src/xml.c
+++ b/src/xml.c
@@ -108,23 +108,21 @@ 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.
+       1, 2, 0,
+       doc: /* Parse 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.*/)
-     (string, base_url)
-     Lisp_Object string, base_url;
+the HTML document.  */)
+  (Lisp_Object string, Lisp_Object base_url)
 {
   return parse_buffer (string, base_url, 1);
 }
 
 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.
+       1, 2, 0,
+       doc: /* Parse 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.*/)
-     (string, base_url)
-     Lisp_Object string, base_url;
+the XML document.  */)
+  (Lisp_Object string, Lisp_Object base_url)
 {
   return parse_buffer (string, base_url, 0);
 }