aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/term.c b/src/term.c
index e9e880a0c7f..e78e2e68814 100644
--- a/src/term.c
+++ b/src/term.c
@@ -533,8 +533,8 @@ encode_terminal_code (struct glyph *src, int src_len, struct coding_system *codi
533 { 533 {
534 if (src->type == COMPOSITE_GLYPH) 534 if (src->type == COMPOSITE_GLYPH)
535 { 535 {
536 struct composition *cmp; 536 struct composition *cmp IF_LINT (= NULL);
537 Lisp_Object gstring; 537 Lisp_Object gstring IF_LINT (= Qnil);
538 int i; 538 int i;
539 539
540 nbytes = buf - encode_terminal_src; 540 nbytes = buf - encode_terminal_src;
@@ -595,7 +595,7 @@ encode_terminal_code (struct glyph *src, int src_len, struct coding_system *codi
595 else if (! CHAR_GLYPH_PADDING_P (*src)) 595 else if (! CHAR_GLYPH_PADDING_P (*src))
596 { 596 {
597 GLYPH g; 597 GLYPH g;
598 int c; 598 int c IF_LINT (= 0);
599 Lisp_Object string; 599 Lisp_Object string;
600 600
601 string = Qnil; 601 string = Qnil;