diff options
| author | Richard M. Stallman | 1997-07-12 06:37:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-12 06:37:25 +0000 |
| commit | c7ef8e24f309cdeb5d44bd461e0aadd265c5a242 (patch) | |
| tree | 6348745c9146c2a0f2fa77a53345d11b1197abb2 /src/textprop.c | |
| parent | 34c0dab2b7232c84f4c624a5b5a7f027687874ce (diff) | |
| download | emacs-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.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) | |||
| 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 | ||