diff options
Diffstat (limited to 'src/xml.c')
| -rw-r--r-- | src/xml.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | ||