(handle_auto_composed_prop): Don't make composition if it->string
is a string.
This commit is contained in:
parent
74c52de17f
commit
ee548a94a0
2 changed files with 3 additions and 1 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue