diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-08 22:25:19 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-08 22:25:19 -0800 |
commit | 1e9966ea025891f948200db6ab85a7e7e169e502 (patch) | |
tree | cd96ef862a8cbf67f4a4f5b4eb1ddd04ae31bbcf /src/xfaces.c | |
parent | 5967d05138d7405e4b60153f98c8beaf40c7d6da (diff) | |
download | emacs-1e9966ea025891f948200db6ab85a7e7e169e502.tar.gz |
* xfaces.c (Fx_list_fonts): Mark variable that gcc -Wuninitialized
does not deduce is never used uninitialized.
Diffstat (limited to 'src/xfaces.c')
-rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index b49675a7d8e..ded871d1fdd 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -1720,7 +1720,7 @@ the WIDTH times as wide as FACE on FRAME. */) (Lisp_Object pattern, Lisp_Object face, Lisp_Object frame, Lisp_Object maximum, Lisp_Object width) { struct frame *f; - int size, avgwidth; + int size, avgwidth IF_LINT (= 0); check_x (); CHECK_STRING (pattern); |