diff options
| author | Dan Nicolaescu | 2010-09-30 16:26:40 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-09-30 16:26:40 -0700 |
| commit | 55e572ef8986dec1febac0e6d4581d820a23a9a5 (patch) | |
| tree | 1d030aea251d2ef07465949c7b27106ba1b11609 /src/xml.c | |
| parent | d4b6d95d51c84ee12cd41fead4bb64191b6d5b6b (diff) | |
| download | emacs-55e572ef8986dec1febac0e6d4581d820a23a9a5.tar.gz emacs-55e572ef8986dec1febac0e6d4581d820a23a9a5.zip | |
* src/xml.c (parse_string): Use const.
Diffstat (limited to 'src/xml.c')
| -rw-r--r-- | src/xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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 | ||