From c7ef8e24f309cdeb5d44bd461e0aadd265c5a242 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 12 Jul 1997 06:37:25 +0000 Subject: [PATCH] (interval_of): Convert args_out_of_range arguments to Lisp_Integer. --- src/textprop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textprop.c b/src/textprop.c index 89e08076b9a..b62cf6169d7 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -514,7 +514,7 @@ interval_of (position, object) } if (!(beg <= position && position <= end)) - args_out_of_range (position, position); + args_out_of_range (make_number (position), make_number (position)); if (beg == end || NULL_INTERVAL_P (i)) return NULL_INTERVAL; -- 2.11.4.GIT