]> git.eshelyaron.com Git - emacs.git/commitdiff
(interval_of): Convert args_out_of_range arguments to Lisp_Integer.
authorRichard M. Stallman <rms@gnu.org>
Sat, 12 Jul 1997 06:37:25 +0000 (06:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 12 Jul 1997 06:37:25 +0000 (06:37 +0000)
src/textprop.c

index 89e08076b9ac7a3c2e082e15f8c30728485526c5..b62cf6169d72a88af862c735bfe09c9e49b70522 100644 (file)
@@ -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;