aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index e2442685732..40ade578008 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -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}