aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authoroga2008-05-18 19:43:50 +0000
committeroga2008-05-18 19:43:50 +0000
commit71e6f7437aa9210cf26fe38b93552ca3bf86cee3 (patch)
tree5bef6e209ba6ebfb24824f8049a6fa33e194449c /parse.y
parente3cff8cb8136b71de61854cd658d22ee25d7e24a (diff)
downloadcwm-71e6f7437aa9210cf26fe38b93552ca3bf86cee3.tar.gz
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.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index aa17c4e..5c5187c 100644
--- a/parse.y
+++ b/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.7 2008/05/18 19:34:09 oga Exp $ */
+/* $OpenBSD: parse.y,v 1.8 2008/05/18 19:43:50 oga Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -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);