aboutsummaryrefslogtreecommitdiffstats
path: root/src/xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml.c')
-rw-r--r--src/xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml.c b/src/xml.c
index 3674e320ef6..5f3ccc85c86 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -187,8 +187,8 @@ parse_region (Lisp_Object start, Lisp_Object end, Lisp_Object base_url,
187 187
188 validate_region (&start, &end); 188 validate_region (&start, &end);
189 189
190 istart = XINT (start); 190 istart = XFIXNUM (start);
191 iend = XINT (end); 191 iend = XFIXNUM (end);
192 istart_byte = CHAR_TO_BYTE (istart); 192 istart_byte = CHAR_TO_BYTE (istart);
193 iend_byte = CHAR_TO_BYTE (iend); 193 iend_byte = CHAR_TO_BYTE (iend);
194 194