diff options
Diffstat (limited to 'src/xml.c')
-rw-r--r-- | src/xml.c | 4 |
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, validate_region (&start, &end); - istart = XINT (start); - iend = XINT (end); + istart = XFIXNUM (start); + iend = XFIXNUM (end); istart_byte = CHAR_TO_BYTE (istart); iend_byte = CHAR_TO_BYTE (iend); |