aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/exit.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-24 13:22:57 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-24 13:22:57 -0500
commit7262bf655f7a19af1d4c8681be74d70bfc6b8911 (patch)
tree2f949def2ad25fff6e642fcbd30d8c9d2bc8db21 /sway/commands/exit.c
parentseparate config directives and commands (diff)
downloadsway-7262bf655f7a19af1d4c8681be74d70bfc6b8911.tar.gz
sway-7262bf655f7a19af1d4c8681be74d70bfc6b8911.tar.zst
sway-7262bf655f7a19af1d4c8681be74d70bfc6b8911.zip
remove checks for command handlers
Diffstat (limited to 'sway/commands/exit.c')
-rw-r--r--sway/commands/exit.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/commands/exit.c b/sway/commands/exit.c
index 4bb6a97b..d5353c20 100644
--- a/sway/commands/exit.c
+++ b/sway/commands/exit.c
@@ -6,9 +6,6 @@ void sway_terminate(int exit_code);
6 6
7struct cmd_results *cmd_exit(int argc, char **argv) { 7struct cmd_results *cmd_exit(int argc, char **argv) {
8 struct cmd_results *error = NULL; 8 struct cmd_results *error = NULL;
9 if (config->reading) {
10 return cmd_results_new(CMD_FAILURE, "exit", "Can't be used in config file.");
11 }
12 if ((error = checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0))) { 9 if ((error = checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0))) {
13 return error; 10 return error;
14 } 11 }