diff options
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -5919,7 +5919,7 @@ from the absolute start of the buffer, disregarding the narrowing. */) | |||
| 5919 | 5919 | ||
| 5920 | /* Check that POSITION is in the accessible range of the buffer. */ | 5920 | /* Check that POSITION is in the accessible range of the buffer. */ |
| 5921 | if (pos < BEGV || pos > ZV) | 5921 | if (pos < BEGV || pos > ZV) |
| 5922 | args_out_of_range (make_int (start), make_int (ZV)); | 5922 | args_out_of_range_3 (make_int (pos), make_int (BEGV), make_int (ZV)); |
| 5923 | 5923 | ||
| 5924 | return make_int (count_lines (start, CHAR_TO_BYTE (pos)) + 1); | 5924 | return make_int (count_lines (start, CHAR_TO_BYTE (pos)) + 1); |
| 5925 | } | 5925 | } |