From: Paul Eggert Date: Sat, 19 Mar 2011 02:45:11 +0000 (-0700) Subject: * xfont.c (xfont_list_family): Mark var as initialized. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~513^2~39 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e2be39f6afd7c24f3436740711fd1aeeb3fce3df;p=emacs.git * xfont.c (xfont_list_family): Mark var as initialized. --- diff --git a/src/ChangeLog b/src/ChangeLog index dbf5c94a87c..b242465cef3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-03-19 Paul Eggert + * xfont.c (xfont_list_family): Mark var as initialized. + * xml.c (make_dom): Now static. * composite.c (composition_compute_stop_pos): Rename local to diff --git a/src/xfont.c b/src/xfont.c index f8aace3663c..3e0fcd2cd75 100644 --- a/src/xfont.c +++ b/src/xfont.c @@ -629,7 +629,7 @@ xfont_list_family (Lisp_Object frame) char **names; int num_fonts, i; Lisp_Object list; - char *last_family; + char *last_family IF_LINT (= 0); int last_len; BLOCK_INPUT;