(handle_auto_composed_prop): Don't make composition if it->string

is a string.
This commit is contained in:
Kenichi Handa 2008-02-28 05:46:27 +00:00
parent 74c52de17f
commit ee548a94a0
2 changed files with 3 additions and 1 deletions

View file

@ -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>

View file

@ -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)