From: Richard M. Stallman Date: Sat, 12 Jul 1997 06:37:25 +0000 (+0000) Subject: (interval_of): Convert args_out_of_range arguments to Lisp_Integer. X-Git-Tag: emacs-20.1~1210 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c7ef8e24f309cdeb5d44bd461e0aadd265c5a242;p=emacs.git (interval_of): Convert args_out_of_range arguments to Lisp_Integer. --- 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;