]> code.delx.au - gnu-emacs/blobdiff - src/xfont.c
Window-related updates to NEWS and Emacs manual.
[gnu-emacs] / src / xfont.c
index 5dd6aae384624d364e36af1f2dc7b7541a4dd5d3..2c3ca911623b0373f1f3c28e63839c727ec2d944 100644 (file)
@@ -594,16 +594,14 @@ xfont_match (Lisp_Object frame, Lisp_Object spec)
     {
       if (XGetFontProperty (xfont, XA_FONT, &value))
        {
-         int len;
          char *s;
 
          s = (char *) XGetAtomName (display, (Atom) value);
-         len = strlen (s);
 
          /* If DXPC (a Differential X Protocol Compressor)
             Ver.3.7 is running, XGetAtomName will return null
             string.  We must avoid such a name.  */
-         if (len > 0)
+         if (*s)
            {
              entity = font_make_entity ();
              ASET (entity, FONT_TYPE_INDEX, Qx);