aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/raise_floating.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/raise_floating.c')
-rw-r--r--sway/commands/raise_floating.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/sway/commands/raise_floating.c b/sway/commands/raise_floating.c
deleted file mode 100644
index 930299a1..00000000
--- a/sway/commands/raise_floating.c
+++ /dev/null
@@ -1,14 +0,0 @@
1#include <string.h>
2#include <strings.h>
3#include "sway/commands.h"
4#include "util.h"
5
6struct cmd_results *cmd_raise_floating(int argc, char **argv) {
7 struct cmd_results *error = NULL;
8 if ((error = checkarg(argc, "raise_floating", EXPECTED_EQUAL_TO, 1))) {
9 return error;
10 }
11 config->raise_floating =
12 parse_boolean(argv[0], config->raise_floating);
13 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
14}