Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c7ef8e24
Commit
c7ef8e24
authored
Jul 12, 1997
by
Richard M. Stallman
Browse files
(interval_of): Convert args_out_of_range arguments to Lisp_Integer.
parent
34c0dab2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/textprop.c
src/textprop.c
+1
-1
No files found.
src/textprop.c
View file @
c7ef8e24
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment