summary refs log tree commit diff
path: root/parse.y
diff options
context:
space:
mode:
authorokan <okan>2013-07-08 16:32:51 +0000
committerokan <okan>2013-07-08 16:32:51 +0000
commita49373406607e71601ac062c0a75ad36219065e2 (patch)
treecec8a9df39eebeccce622c49287c74040298f3c2 /parse.y
parent912ec90ea1f6e25b33a2bb0d6d7a1138622bd099 (diff)
downloadcwm-a49373406607e71601ac062c0a75ad36219065e2.tar.gz
cwm-a49373406607e71601ac062c0a75ad36219065e2.tar.xz
cwm-a49373406607e71601ac062c0a75ad36219065e2.zip
clarify kbd vs mouse functions
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 e40177f..58afd25 100644
--- a/parse.y
+++ b/parse.y
@@ -155,7 +155,7 @@ main		: FONTNAME STRING		{
 			free($2);
 		}
 		| BIND STRING string		{
-			conf_bindname(conf, $2, $3);
+			conf_bind_kbd(conf, $2, $3);
 			free($2);
 			free($3);
 		}
@@ -171,7 +171,7 @@ main		: FONTNAME STRING		{
 			conf->gap.right = $5;
 		}
 		| MOUSEBIND STRING string	{
-			if (!conf_mousebind(conf, $2, $3)) {
+			if (!conf_bind_mouse(conf, $2, $3)) {
 				yyerror("invalid mousebind: %s %s", $2, $3);
 				free($2);
 				free($3);