cvsimport

This commit is contained in:
okan
2013-07-10 14:15:58 +00:00
10 changed files with 143 additions and 127 deletions

View File

@@ -157,7 +157,7 @@ main : FONTNAME STRING {
free($2);
}
| BIND STRING string {
conf_bindname(conf, $2, $3);
conf_bind_kbd(conf, $2, $3);
free($2);
free($3);
}
@@ -173,7 +173,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);