summaryrefslogtreecommitdiff
path: root/src/textprop.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-12 06:37:25 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-12 06:37:25 +0000
commit07b0453e37324dd40a49d34db7d4c57499c52ef5 (patch)
tree1dacf8c0da33ba0f3eb2d6f16889394761f517a6 /src/textprop.c
parent2d216122941d8e660c90f239dcd711beee2dee8a (diff)
downloademacs-07b0453e37324dd40a49d34db7d4c57499c52ef5.tar.gz
(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)
}
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;