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
ee548a94
Commit
ee548a94
authored
Feb 28, 2008
by
Kenichi Handa
Browse files
(handle_auto_composed_prop): Don't make composition if it->string
is a string.
parent
74c52de1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/xdisp.c
src/xdisp.c
+1
-1
No files found.
src/ChangeLog
View file @
ee548a94
...
...
@@ -2,6 +2,8 @@
* xdisp.c (display_mode_element): Cancel the previous change.
(decode_mode_spec): Likewise.
(handle_auto_composed_prop): Don't make composition if it->string
is a string.
2008-02-27 Kim F. Storm <storm@cua.dk>
...
...
src/xdisp.c
View file @
ee548a94
...
...
@@ -4634,7 +4634,7 @@ handle_auto_composed_prop (it)
val = Qnil;
}
}
if (NILP (val))
if (NILP (val)
&& ! STRINGP (it->string)
)
{
if (limit < 0)
limit = (STRINGP (it->string) ? SCHARS (it->string)
...
...
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