aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <[email protected]>2010-09-14 02:08:02 +0200
committerLars Magne Ingebrigtsen <[email protected]>2010-09-14 02:08:02 +0200
commit26632d8d412f5cdd2034e125eafb38a9a6b99c2d (patch)
treefef2875cd3608bc11c3bf0a4f5be41301dc6e001
parent7d5444bee60f9fde3d21e8266ff7bb760102cdf5 (diff)
* xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the parameters
for the doc string. From Leo <[email protected]> (tiny change)
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xml.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 87b54529f2..f2dc725d04 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-14 Leo <[email protected]> (tiny change)
+
+ * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
+ parameters for the doc string.
+
2010-09-12 Lars Magne Ingebrigtsen <[email protected]>
* xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
diff --git a/src/xml.c b/src/xml.c
index c1098b15a2..1087e504d5 100644
--- 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);
}