# HG changeset patch # User Katsumi Yamaoka # Date 1284435427 0 # Node ID 2e5cec185a699738cb56509c7dcf81e41c3ab180 # Parent 6358797a47cde4d2261184487618c4e8a64bbbe8# Parent 5c41eafe6021c7ff464654a04946759d3b3f82f1 Merge from mainline. diff -r 6358797a47cd -r 2e5cec185a69 configure --- a/configure Mon Sep 13 22:40:16 2010 +0000 +++ b/configure Tue Sep 14 03:37:07 2010 +0000 @@ -11180,6 +11180,7 @@ fi if test "${HAVE_LIBXML2}" = "yes"; then + LIBS="$LIBXML2_LIBS $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for htmlReadMemory in -lxml2" >&5 $as_echo_n "checking for htmlReadMemory in -lxml2... " >&6; } if test "${ac_cv_lib_xml2_htmlReadMemory+set}" = set; then : diff -r 6358797a47cd -r 2e5cec185a69 src/ChangeLog --- a/src/ChangeLog Mon Sep 13 22:40:16 2010 +0000 +++ b/src/ChangeLog Tue Sep 14 03:37:07 2010 +0000 @@ -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 6358797a47cd -r 2e5cec185a69 src/xml.c --- a/src/xml.c Mon Sep 13 22:40:16 2010 +0000 +++ b/src/xml.c Tue Sep 14 03:37:07 2010 +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); }