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 | 07b0453e37324dd40a49d34db7d4c57499c52ef5 (patch) | |
tree | 1dacf8c0da33ba0f3eb2d6f16889394761f517a6 /src/textprop.c | |
parent | 2d216122941d8e660c90f239dcd711beee2dee8a (diff) | |
download | emacs-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.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; |