1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 12:20:39 -08:00

* composite.c (composition_update_it): Mark var as initialized.

This commit is contained in:
Paul Eggert 2011-03-18 17:58:10 -07:00
parent b246f9329c
commit 80e079b231
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@
avoid shadowing.
(composition_reseat_it): Remove unused locals.
(find_automatic_composition, composition_adjust_point): Likewise.
(composition_update_it): Mark var as initialized.
2011-03-18 Paul Eggert <eggert@cs.ucla.edu>

View file

@ -1364,7 +1364,7 @@ composition_reseat_it (struct composition_it *cmp_it, EMACS_INT charpos, EMACS_I
int
composition_update_it (struct composition_it *cmp_it, EMACS_INT charpos, EMACS_INT bytepos, Lisp_Object string)
{
int i, c;
int i, c IF_LINT (= 0);
if (cmp_it->ch < 0)
{