浏览代码

Add an error for XftFontOpenPattern failure.

Gary Allen Vollink 7 年之前
父节点
当前提交
b1338e91ed
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      x.c

+ 3 - 0
x.c

@@ -1092,6 +1092,9 @@ xmakeglyphfontspecs(XftGlyphFontSpec *specs, const Glyph *glyphs, int len, int x
 
 			frc[frclen].font = XftFontOpenPattern(xw.dpy,
 					fontpattern);
+			if (!frc[frclen].font)
+				die("XftFontOpenPattern failed seeking fallback font: %s\n",
+					strerror(errno));
 			frc[frclen].flags = frcflags;
 			frc[frclen].unicodep = rune;