diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-11-02 20:07:11 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-11-02 20:07:11 +0100 |
commit | d92ad6401714a9002b66ca07ddf8595f38534ea6 (patch) | |
tree | 25318e8b5f03a4b6393e12b3a08d63928d9d715c | |
parent | dcf0955466fad18da645f6cfc5ba36fc14d78f8e (diff) | |
download | st-d92ad6401714a9002b66ca07ddf8595f38534ea6.tar.gz st-d92ad6401714a9002b66ca07ddf8595f38534ea6.tar.bz2 |
Make it possible to use the corefont font description too. It is not very
useful, but easy to implement.
-rw-r--r-- | st.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2226,7 +2226,12 @@ xloadfonts(char *fontstr, int fontsize) { FcResult result; double fontval; - pattern = FcNameParse((FcChar8 *)fontstr); + if(fontstr[0] == '-') { + pattern = XftXlfdParse(fontstr, False, False); + } else { + pattern = FcNameParse((FcChar8 *)fontstr); + } + if(!pattern) die("st: can't open font %s\n", fontstr); |