Mercurial > emacs
diff src/xml.c @ 110328:5c41eafe6021
* xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the parameters
for the doc string.
From Leo <sdl.web@gmail.com> (tiny change)
| author | Lars Magne Ingebrigtsen <larsi@gnus.org> |
|---|---|
| date | Tue, 14 Sep 2010 02:08:02 +0200 |
| parents | 5988195cbf4c |
| children | 7363111f3713 |
line wrap: on
line diff
--- 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); }
