comparison src/xdisp.c @ 98130:f90a2c13cbb4

(handle_composition_prop): Set it->cmp_it.ch to -1.
author Kenichi Handa <handa@m17n.org>
date Wed, 10 Sep 2008 12:38:50 +0000
parents 638e09e81764
children 16fcbc5c4c7d
comparison
equal deleted inserted replaced
98129:262f9700e3de 98130:f90a2c13cbb4
4677 it->cmp_it.id = get_composition_id (start, pos_byte, end - start, 4677 it->cmp_it.id = get_composition_id (start, pos_byte, end - start,
4678 prop, string); 4678 prop, string);
4679 4679
4680 if (it->cmp_it.id >= 0) 4680 if (it->cmp_it.id >= 0)
4681 { 4681 {
4682 it->cmp_it.ch = -1;
4682 it->cmp_it.nchars = COMPOSITION_LENGTH (prop); 4683 it->cmp_it.nchars = COMPOSITION_LENGTH (prop);
4683 it->cmp_it.nglyphs = -1; 4684 it->cmp_it.nglyphs = -1;
4684 } 4685 }
4685 } 4686 }
4686 4687