diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-10-23 20:33:40 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 20:33:40 +1000 |
commit | e33671fd9a478a917250b2e3b889c9ee0e49c65c (patch) | |
tree | 32f4a9782328486f529c09fe2bb8092c25b9993d /include/sway | |
parent | 970501f05e8a1835b880953888ad3022fb2e9ada (diff) | |
parent | 9227cb7d673b012a0c6730800d528f9d729972b6 (diff) |
Merge pull request #2941 from ianyfan/commands
commands: clean up checkargs function +other small changes
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/commands.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h index 2f6d31b1..6606775a 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -39,9 +39,8 @@ struct cmd_results { }; enum expected_args { - EXPECTED_MORE_THAN, EXPECTED_AT_LEAST, - EXPECTED_LESS_THAN, + EXPECTED_AT_MOST, EXPECTED_EQUAL_TO }; |