diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4edac655b7f..a2049e024bf 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1827,12 +1827,17 @@ scan_lists (from, count, depth, sexpflag) | |||
| 1827 | int temp_pos; | 1827 | int temp_pos; |
| 1828 | int last_good = from; | 1828 | int last_good = from; |
| 1829 | int found; | 1829 | int found; |
| 1830 | int from_byte = CHAR_TO_BYTE (from); | 1830 | int from_byte; |
| 1831 | int out_bytepos, out_charpos; | 1831 | int out_bytepos, out_charpos; |
| 1832 | int temp; | 1832 | int temp; |
| 1833 | 1833 | ||
| 1834 | if (depth > 0) min_depth = 0; | 1834 | if (depth > 0) min_depth = 0; |
| 1835 | 1835 | ||
| 1836 | if (from > ZV) from = ZV; | ||
| 1837 | if (from < BEGV) from = BEGV; | ||
| 1838 | |||
| 1839 | from_byte = CHAR_TO_BYTE (from); | ||
| 1840 | |||
| 1836 | immediate_quit = 1; | 1841 | immediate_quit = 1; |
| 1837 | QUIT; | 1842 | QUIT; |
| 1838 | 1843 | ||