summary refs log tree commit diff
path: root/parse.y
diff options
context:
space:
mode:
authorokan <okan>2014-01-20 21:34:32 +0000
committerokan <okan>2014-01-20 21:34:32 +0000
commitd91571c567fc74c422d766fd2613c9ae23ccbc36 (patch)
treed5aa253fdcbb4860caee0dd4b7af7f11017dbcfa /parse.y
parent7263fb4c8457631a921c20a93bb339dfe638bb34 (diff)
downloadcwm-d91571c567fc74c422d766fd2613c9ae23ccbc36.tar.gz
cwm-d91571c567fc74c422d766fd2613c9ae23ccbc36.tar.xz
cwm-d91571c567fc74c422d766fd2613c9ae23ccbc36.zip
constify and rename some confusing variables around cmdq.
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 96f0b22..28c95c7 100644
--- a/parse.y
+++ b/parse.y
@@ -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);
 		}