Merge pull request #5 from cquijano/patched

fix defaultbg value, solve sigfault
This commit is contained in:
Luke Smith 2018-07-15 14:03:29 -04:00 committed by GitHub
commit 02ebb37e50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,7 +114,7 @@ static const char *colorname[] = {
* foreground, background, cursor, reverse cursor * foreground, background, cursor, reverse cursor
*/ */
unsigned int defaultfg = 12; unsigned int defaultfg = 12;
unsigned int defaultbg = 256; unsigned int defaultbg = 257;
static unsigned int defaultcs = 14; static unsigned int defaultcs = 14;
static unsigned int defaultrcs = 15; static unsigned int defaultrcs = 15;