summary refs log tree commit diff
path: root/parse.y
diff options
context:
space:
mode:
authoroga <oga>2008-05-18 19:43:50 +0000
committeroga <oga>2008-05-18 19:43:50 +0000
commit27b023ebcbe1f4ec24c6044fee51c22c55d5993b (patch)
tree3f4af5ab604be9d376e99f1f781caf82834eb122 /parse.y
parent5c402536fa7dfe6805ab1cb9e1cd96feaaf69c41 (diff)
downloadcwm-27b023ebcbe1f4ec24c6044fee51c22c55d5993b.tar.gz
cwm-27b023ebcbe1f4ec24c6044fee51c22c55d5993b.tar.xz
cwm-27b023ebcbe1f4ec24c6044fee51c22c55d5993b.zip
Kill conf_get_int(), it was a silly function anyway.
Since it's only used once just put the (simplified) logic into
conf_client() instead. This  means we can kill an enum and
CONF_IGNORECASE, too.

ok okan@
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index b9b9222..cf75142 100644
--- a/parse.y
+++ b/parse.y
@@ -152,7 +152,6 @@ main		: FONTNAME STRING		{
 
 			XCALLOC(wm, struct winmatch);
 			strlcpy(wm->title, $2, sizeof(wm->title));
-			wm->opts |= CONF_IGNORECASE;
 			TAILQ_INSERT_TAIL(&conf->ignoreq, wm, entry);
 
 			free($2);