aboutsummaryrefslogtreecommitdiffstats
path: root/src/xml.c
diff options
context:
space:
mode:
authorDan Nicolaescu2010-09-30 16:26:40 -0700
committerDan Nicolaescu2010-09-30 16:26:40 -0700
commit55e572ef8986dec1febac0e6d4581d820a23a9a5 (patch)
tree1d030aea251d2ef07465949c7b27106ba1b11609 /src/xml.c
parentd4b6d95d51c84ee12cd41fead4bb64191b6d5b6b (diff)
downloademacs-55e572ef8986dec1febac0e6d4581d820a23a9a5.tar.gz
emacs-55e572ef8986dec1febac0e6d4581d820a23a9a5.zip
* src/xml.c (parse_string): Use const.
Diffstat (limited to 'src/xml.c')
-rw-r--r--src/xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml.c b/src/xml.c
index 5829f1da538..6f4b1e79cd4 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -80,7 +80,7 @@ parse_string (Lisp_Object string, Lisp_Object base_url, int htmlp)
80 xmlNode *node; 80 xmlNode *node;
81 Lisp_Object result = Qnil; 81 Lisp_Object result = Qnil;
82 int ibeg, iend; 82 int ibeg, iend;
83 char *burl = ""; 83 const char *burl = "";
84 84
85 LIBXML_TEST_VERSION; 85 LIBXML_TEST_VERSION;
86 86