Add an error for XftFontOpenPattern failure.
This commit is contained in:
parent
b2ac917753
commit
b1338e91ed
3
x.c
3
x.c
@ -1092,6 +1092,9 @@ xmakeglyphfontspecs(XftGlyphFontSpec *specs, const Glyph *glyphs, int len, int x
|
|||||||
|
|
||||||
frc[frclen].font = XftFontOpenPattern(xw.dpy,
|
frc[frclen].font = XftFontOpenPattern(xw.dpy,
|
||||||
fontpattern);
|
fontpattern);
|
||||||
|
if (!frc[frclen].font)
|
||||||
|
die("XftFontOpenPattern failed seeking fallback font: %s\n",
|
||||||
|
strerror(errno));
|
||||||
frc[frclen].flags = frcflags;
|
frc[frclen].flags = frcflags;
|
||||||
frc[frclen].unicodep = rune;
|
frc[frclen].unicodep = rune;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user