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
d3f40cbd
Commit
d3f40cbd
authored
Apr 13, 2000
by
Kenichi Handa
Browse files
(update_compositions): If FROM and TO is not in a
valid range, do nothing.
parent
9d3d5916
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/composite.c
src/composite.c
+4
-0
No files found.
src/composite.c
View file @
d3f40cbd
...
...
@@ -475,6 +475,10 @@ update_compositions (from, to, check_mask)
Lisp_Object
prop
,
hook
;
int
start
,
end
;
/* If FROM and TO are not in a valid range, do nothing. */
if
(
!
(
BEGV
<=
from
&&
from
<=
to
&&
to
<=
ZV
))
return
;
if
(
check_mask
&
CHECK_HEAD
)
{
/* FROM should be at composition boundary. But, insertion or
...
...
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