emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101429: * xml.c (Fxml_parse_string,


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101429: * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the parameters
Date: Tue, 14 Sep 2010 02:08:02 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101429
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Tue 2010-09-14 02:08:02 +0200
message:
  * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the parameters
  for the doc string.
  
  From  Leo  <address@hidden>  (tiny change)
modified:
  src/ChangeLog
  src/xml.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-09-12 17:16:25 +0000
+++ b/src/ChangeLog     2010-09-14 00:08:02 +0000
@@ -1,3 +1,8 @@
+2010-09-14  Leo  <address@hidden>  (tiny change)
+
+       * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
+       parameters for the doc string.
+
 2010-09-12  Lars Magne Ingebrigtsen  <address@hidden>
 
        * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.

=== modified file 'src/xml.c'
--- a/src/xml.c 2010-09-12 17:16:25 +0000
+++ b/src/xml.c 2010-09-14 00:08:02 +0000
@@ -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);
 }


reply via email to

[Prev in Thread] Current Thread [Next in Thread]