diff options
Diffstat (limited to '')
-rw-r--r-- | conf.c | 32 |
1 files changed, 1 insertions, 31 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: conf.c,v 1.19 2008/01/11 16:06:44 oga Exp $ + * $Id: conf.c,v 1.20 2008/01/16 11:39:20 oga Exp $ */ #include "headers.h" @@ -327,19 +327,6 @@ conf_get_int(struct client_ctx *cc, enum conftype ctype) return (val); } -char * -conf_get_str(struct client_ctx *cc, enum conftype ctype) -{ - switch (ctype) { - case CONF_NOTIFIER: - return xstrdup("./notifier.py"); /* XXX */ - break; - default: - break; - } - return NULL; -} - void conf_client(struct client_ctx *cc) { @@ -410,23 +397,6 @@ struct { }; void -conf_bindkey(struct conf *c, void (*arg_callback)(struct client_ctx *, void *), - int arg_keysym, int arg_modmask, int arg_flags, void * arg_arg) -{ - struct keybinding *kb; - - XMALLOC(kb, struct keybinding); - - kb->modmask = arg_modmask; - kb->keysym = arg_keysym; - kb->keycode = 0; - kb->flags = arg_flags; - kb->callback = arg_callback; - kb->argument = arg_arg; - TAILQ_INSERT_TAIL(&c->keybindingq, kb, entry); -} - -void conf_parsekeys(struct conf *c, char *filename) { DIR *dir; |