diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-12 06:37:25 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-12 06:37:25 +0000 |
commit | c7ef8e24f309cdeb5d44bd461e0aadd265c5a242 (patch) | |
tree | 6348745c9146c2a0f2fa77a53345d11b1197abb2 /src/textprop.c | |
parent | 34c0dab2b7232c84f4c624a5b5a7f027687874ce (diff) | |
download | emacs-c7ef8e24f309cdeb5d44bd461e0aadd265c5a242.tar.gz |
(interval_of): Convert args_out_of_range arguments to Lisp_Integer.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 2 |
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; |