# HG changeset patch # User Lars Magne Ingebrigtsen # Date 1284422882 -7200 # Node ID 5c41eafe6021c7ff464654a04946759d3b3f82f1 # Parent 56a27fafe17c3dbf9b0da1b7b6a035220f7ac7f4 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the parameters for the doc string. From Leo (tiny change) diff -r 56a27fafe17c -r 5c41eafe6021 src/ChangeLog --- a/src/ChangeLog Tue Sep 14 02:04:48 2010 +0200 +++ b/src/ChangeLog Tue Sep 14 02:08:02 2010 +0200 @@ -1,3 +1,8 @@ +2010-09-14 Leo (tiny change) + + * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the + parameters for the doc string. + 2010-09-12 Lars Magne Ingebrigtsen * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL. diff -r 56a27fafe17c -r 5c41eafe6021 src/xml.c --- a/src/xml.c Tue Sep 14 02:04:48 2010 +0200 +++ b/src/xml.c Tue Sep 14 02:08:02 2010 +0200 @@ -112,7 +112,8 @@ 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 @@ 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); }