aboutsummaryrefslogtreecommitdiffstats
path: root/src/composite.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-18 17:58:10 -0700
committerPaul Eggert2011-03-18 17:58:10 -0700
commit80e079b231d97294c2c0cbd00a8d0e68c9586d36 (patch)
treef9a3ded1f3e407dc84098881ff0c65ebe7224058 /src/composite.c
parentb246f9329c26a1174f760d345927d740aaac364b (diff)
downloademacs-80e079b231d97294c2c0cbd00a8d0e68c9586d36.tar.gz
emacs-80e079b231d97294c2c0cbd00a8d0e68c9586d36.zip
* composite.c (composition_update_it): Mark var as initialized.
Diffstat (limited to 'src/composite.c')
-rw-r--r--src/composite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c
index 86a53f91c97..ee2e843b729 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -1364,7 +1364,7 @@ composition_reseat_it (struct composition_it *cmp_it, EMACS_INT charpos, EMACS_I
1364int 1364int
1365composition_update_it (struct composition_it *cmp_it, EMACS_INT charpos, EMACS_INT bytepos, Lisp_Object string) 1365composition_update_it (struct composition_it *cmp_it, EMACS_INT charpos, EMACS_INT bytepos, Lisp_Object string)
1366{ 1366{
1367 int i, c; 1367 int i, c IF_LINT (= 0);
1368 1368
1369 if (cmp_it->ch < 0) 1369 if (cmp_it->ch < 0)
1370 { 1370 {