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
31bfc35c
Commit
31bfc35c
authored
May 20, 2011
by
Kenichi Handa
Browse files
composite.c (find_automatic_composition): Fix previous change.
parent
23373930
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/composite.c
src/composite.c
+1
-1
No files found.
src/ChangeLog
View file @
31bfc35c
2011-05-20 handa <handa@m17n.org>
* composite.c (find_automatic_composition): Fix previous change.
2011-05-18 Kenichi Handa <handa@m17n.org>
* composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
...
...
src/composite.c
View file @
31bfc35c
...
...
@@ -1565,7 +1565,7 @@ find_automatic_composition (EMACS_INT pos, EMACS_INT limit,
if
(
limit
<=
pos
)
/* case (1) */
{
do
{
if (cur.pos
=
= limit)
if
(
cur
.
pos
<
=
limit
)
return
0
;
BACKWARD_CHAR
(
cur
,
stop
);
c
=
STRING_CHAR
(
cur
.
p
);
...
...
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