aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/exit.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-02-24 13:22:57 -0500
committerTony Crisci <tony@dubstepdish.com>2018-02-24 13:22:57 -0500
commit7262bf655f7a19af1d4c8681be74d70bfc6b8911 (patch)
tree2f949def2ad25fff6e642fcbd30d8c9d2bc8db21 /sway/commands/exit.c
parent5b219a15982b9626f85535c082ee2adb460ad11d (diff)
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);
struct cmd_results *cmd_exit(int argc, char **argv) {
struct cmd_results *error = NULL;
- if (config->reading) {
- return cmd_results_new(CMD_FAILURE, "exit", "Can't be used in config file.");
- }
if ((error = checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0))) {
return error;
}