=== modified file 'src/xterm.c' --- src/xterm.c 2014-04-02 16:17:08 +0000 +++ src/xterm.c 2014-04-02 15:14:50 +0000 @@ -10162,7 +10162,6 @@ #ifdef USE_LUCID { - XFontStruct *xfont = NULL; XrmValue d, fr, to; Font font; @@ -10176,10 +10175,8 @@ x_catch_errors (dpy); if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL)) emacs_abort (); - if (x_had_errors_p (dpy) || !((xfont = XQueryFont (dpy, font)))) + if (x_had_errors_p (dpy) || !XQueryFont (dpy, font)) XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15"); - if (xfont) - XFreeFont (dpy, xfont); x_uncatch_errors (); } #endif