diff options
author | oga | 2008-05-18 19:43:50 +0000 |
---|---|---|
committer | oga | 2008-05-18 19:43:50 +0000 |
commit | 71e6f7437aa9210cf26fe38b93552ca3bf86cee3 (patch) | |
tree | 5bef6e209ba6ebfb24824f8049a6fa33e194449c /parse.y | |
parent | e3cff8cb8136b71de61854cd658d22ee25d7e24a (diff) | |
download | cwm-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.y | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |