diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-07-15 14:03:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-15 14:03:29 -0400 |
commit | 02ebb37e50ce4d0116806585d612b76c318e33df (patch) | |
tree | 00a4c2e06aa7a314ea647963e22f1859394f5982 | |
parent | 43af5f7790c8b4686a8f32d90a9366ff426b65be (diff) | |
parent | c49edb020e6931cda8c5a04d264cb20673290e2c (diff) |
Merge pull request #5 from cquijano/patched
fix defaultbg value, solve sigfault
-rw-r--r-- | config.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ static const char *colorname[] = { * foreground, background, cursor, reverse cursor */ unsigned int defaultfg = 12; -unsigned int defaultbg = 256; +unsigned int defaultbg = 257; static unsigned int defaultcs = 14; static unsigned int defaultrcs = 15; |