diff options
author | Tony Crisci <[email protected]> | 2018-02-24 13:22:57 -0500 |
---|---|---|
committer | Tony Crisci <[email protected]> | 2018-02-24 13:22:57 -0500 |
commit | 7262bf655f7a19af1d4c8681be74d70bfc6b8911 (patch) | |
tree | 2f949def2ad25fff6e642fcbd30d8c9d2bc8db21 /sway/commands/reload.c | |
parent | 5b219a15982b9626f85535c082ee2adb460ad11d (diff) |
remove checks for command handlers
Diffstat (limited to 'sway/commands/reload.c')
-rw-r--r-- | sway/commands/reload.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/commands/reload.c b/sway/commands/reload.c index 419c7de3..d54d40db 100644 --- a/sway/commands/reload.c +++ b/sway/commands/reload.c @@ -4,9 +4,6 @@ struct cmd_results *cmd_reload(int argc, char **argv) { struct cmd_results *error = NULL; - if (config->reading) { - return cmd_results_new(CMD_FAILURE, "reload", "Can't be used in config file."); - } if ((error = checkarg(argc, "reload", EXPECTED_EQUAL_TO, 0))) { return error; } |