aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authorokan2016-11-14 21:25:59 +0000
committerokan2016-11-14 21:25:59 +0000
commitee3ec00421417024d273006f0a412ca5f6f302b7 (patch)
tree73bb46c0823434b683aa5794157c9c5b5d01ad55 /parse.y
parent277714c53ff6e57732583dd3b1f7eb3e7ac23935 (diff)
downloadcwm-ee3ec00421417024d273006f0a412ca5f6f302b7.tar.gz
Define callbacks, then default bindings.
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index c615d0b..7ed8f93 100644
--- a/parse.y
+++ b/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.65 2016/10/03 14:42:34 okan Exp $ */
+/* $OpenBSD: parse.y,v 1.66 2016/11/14 21:25:59 okan Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -170,7 +170,7 @@ main : FONTNAME STRING {
free($2);
}
| BIND STRING string {
- if (!conf_bind_kbd(conf, $2, $3)) {
+ if (!conf_bind_key(conf, $2, $3)) {
yyerror("invalid bind: %s %s", $2, $3);
free($2);
free($3);