1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00

(x_list_fonts): Initialize the variable LIST to Qnil.

This commit is contained in:
Kenichi Handa 1997-07-07 00:59:44 +00:00
parent c7c9a4a184
commit 1348f1a4fc

View File

@ -6278,7 +6278,7 @@ x_list_fonts (f, pattern, size, maxnames)
int size;
int maxnames;
{
Lisp_Object list, patterns, newlist = Qnil, key, tem, second_best;
Lisp_Object list = Qnil, patterns, newlist = Qnil, key, tem, second_best;
Display *dpy = f != NULL ? FRAME_X_DISPLAY (f) : x_display_list->display;
patterns = Fassoc (pattern, Valternative_fontname_alist);