diff options
author | FRIGN <dev@frign.de> | 2015-07-08 23:56:55 +0200 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2015-07-09 18:34:46 +0200 |
commit | 9de853a98da8fe0f458b244970f0e0d3e9b38a50 (patch) | |
tree | 6f12516713caeab47226fa6259da4058481f9c0c /config.def.h | |
parent | abfad4c4fc69ebb22febfe32677aadd112ce375a (diff) |
Unboolify st
This practice proved itself in sbase, ubase and a couple of other
projects.
Also remove the True and False defined in X11 and FcTrue and FcFalse
defined in Fontconfig.
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 64e75b8..e246e3c 100644 --- a/config.def.h +++ b/config.def.h @@ -30,7 +30,7 @@ static unsigned int doubleclicktimeout = 300; static unsigned int tripleclicktimeout = 600; /* alt screens */ -static bool allowaltscreen = true; +static int allowaltscreen = 1; /* frames per second st should at maximum draw to the screen */ static unsigned int xfps = 120; |