aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-12 06:37:25 +0000
committerRichard M. Stallman1997-07-12 06:37:25 +0000
commitc7ef8e24f309cdeb5d44bd461e0aadd265c5a242 (patch)
tree6348745c9146c2a0f2fa77a53345d11b1197abb2 /src/textprop.c
parent34c0dab2b7232c84f4c624a5b5a7f027687874ce (diff)
downloademacs-c7ef8e24f309cdeb5d44bd461e0aadd265c5a242.tar.gz
emacs-c7ef8e24f309cdeb5d44bd461e0aadd265c5a242.zip
(interval_of): Convert args_out_of_range arguments to Lisp_Integer.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c2
1 files changed, 1 insertions, 1 deletions
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)
514 } 514 }
515 515
516 if (!(beg <= position && position <= end)) 516 if (!(beg <= position && position <= end))
517 args_out_of_range (position, position); 517 args_out_of_range (make_number (position), make_number (position));
518 if (beg == end || NULL_INTERVAL_P (i)) 518 if (beg == end || NULL_INTERVAL_P (i))
519 return NULL_INTERVAL; 519 return NULL_INTERVAL;
520 520