diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-09-27 23:02:33 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-09-27 23:02:33 +0200 |
commit | bc20c13db0fdb73a5ef2c0d4b791e05e3f324aba (patch) | |
tree | 00ccf5df5231714e902ef121fde29fdd080d6138 /config.def.h | |
parent | 96e60c66bc85985fe34cfdcd989abc08fc46a5e2 (diff) |
separate program-specific c99 bool and X11
True, False are X11-specific, make sure to use c99 stdbool for
program-specific things.
... also remove left-over vim mode string in config.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 4e5e3e7..bc2dc40 100644 --- a/config.def.h +++ b/config.def.h @@ -1,9 +1,7 @@ /* See LICENSE file for copyright and license details. */ -/* vim: expandtab - */ -/* Default settings; can be overrided by command line. */ +/* Default settings; can be overriden by command line. */ -static Bool topbar = True; /* -b option; if False, dmenu appears at bottom */ +static bool topbar = true; /* -b option; if False, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { "monospace:size=10" |