[hackers] [st] Remove 'xloadfontset' function. || noname

From: <git_AT_suckless.org>
Date: Fri, 10 Apr 2015 17:52:18 +0200 (CEST)

commit 6f5f7701864e6987544cb7e7dc5f2d24db1a4537
Author: noname <noname_AT_inventati.org>
Date: Wed Apr 8 23:24:06 2015 +0000

    Remove 'xloadfontset' function.
    
    It was used only once and its return value was ignored.

diff --git a/st.c b/st.c
index 7dbd87a..0065240 100644
--- a/st.c
+++ b/st.c
_AT_@ -419,7 +419,6 @@ static int xsetcolorname(int, const char *);
 static int xgeommasktogravity(int);
 static int xloadfont(Font *, FcPattern *);
 static void xloadfonts(char *, double);
-static int xloadfontset(Font *);
 static void xsettitle(char *);
 static void xresettitle(void);
 static void xsetpointermotion(int);
_AT_@ -3116,15 +3115,6 @@ xloadfonts(char *fontstr, double fontsize) {
         FcPatternDestroy(pattern);
 }
 
-int
-xloadfontset(Font *f) {
- FcResult result;
-
- if(!(f->set = FcFontSort(0, f->pattern, FcTrue, 0, &result)))
- return 1;
- return 0;
-}
-
 void
 xunloadfont(Font *f) {
         XftFontClose(xw.dpy, f->match);
_AT_@ -3472,7 +3462,8 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
                 /* Nothing was found. */
                 if(i >= frclen) {
                         if(!font->set)
- xloadfontset(font);
+ font->set = FcFontSort(0, font->pattern,
+ FcTrue, 0, &fcres);
                         fcsets[0] = font->set;
 
                         /*
Received on Fri Apr 10 2015 - 17:52:18 CEST

This archive was generated by hypermail 2.3.0 : Fri Apr 10 2015 - 18:00:15 CEST