constify and rename some confusing variables around cmdq.

This commit is contained in:
okan
2014-01-20 21:34:32 +00:00
parent 7263fb4c84
commit d91571c567
5 changed files with 21 additions and 20 deletions

View File

@@ -137,7 +137,7 @@ main : FONTNAME STRING {
conf->snapdist = $2;
}
| COMMAND STRING string {
conf_cmd_add(conf, $3, $2);
conf_cmd_add(conf, $2, $3);
free($2);
free($3);
}