# HG changeset patch # User Richard M. Stallman # Date 868689445 0 # Node ID e5e6647d4883aaf301cff0149b520eff7c3c60a6 # Parent e98b76420c8585ccc491904f342e87ceae775ad1 (interval_of): Convert args_out_of_range arguments to Lisp_Integer. diff -r e98b76420c85 -r e5e6647d4883 src/textprop.c --- a/src/textprop.c Sat Jul 12 06:37:04 1997 +0000 +++ b/src/textprop.c Sat Jul 12 06:37:25 1997 +0000 @@ -514,7 +514,7 @@ } 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;