diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-12-03 04:52:42 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-12-03 04:52:42 +0000 |
commit | a3c15670b40e6cb8a1a252d25b1c5b63116735a9 (patch) | |
tree | ff985f0e7e1f3c1a020712baeb13019417e90127 /src/ftfont.c | |
parent | 11e3a6e42a9e08f1a2868893be25455bf244eb64 (diff) | |
download | emacs-a3c15670b40e6cb8a1a252d25b1c5b63116735a9.tar.gz |
(ftfont_match): Initialize entity variable.
Diffstat (limited to 'src/ftfont.c')
-rw-r--r-- | src/ftfont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ftfont.c b/src/ftfont.c index 6d1033555d3..0ae10f1004c 100644 --- a/src/ftfont.c +++ b/src/ftfont.c @@ -920,7 +920,7 @@ static Lisp_Object ftfont_match (frame, spec) Lisp_Object frame, spec; { - Lisp_Object entity; + Lisp_Object entity = Qnil; FcPattern *pattern, *match = NULL; FcResult result; char otlayout[15]; /* For "otlayout:XXXX" */ |