aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-05-30 22:23:11 -0400
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-06-02 08:07:44 -0400
commit8bfa2def8876bb507aa0174e6b159a0a226889b4 (patch)
treecb913921a89cf5436a6f0912fcdf680dde973216 /sway/commands
parentSupport braces on next line for config blocks (diff)
downloadsway-8bfa2def8876bb507aa0174e6b159a0a226889b4.tar.gz
sway-8bfa2def8876bb507aa0174e6b159a0a226889b4.tar.zst
sway-8bfa2def8876bb507aa0174e6b159a0a226889b4.zip
Address first round of review for generic blocks
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/bar.c4
-rw-r--r--sway/commands/bar/colors.c2
-rw-r--r--sway/commands/input.c4
-rw-r--r--sway/commands/mode.c4
-rw-r--r--sway/commands/seat.c4
5 files changed, 9 insertions, 9 deletions
diff --git a/sway/commands/bar.c b/sway/commands/bar.c
index 358b3893..d84ce808 100644
--- a/sway/commands/bar.c
+++ b/sway/commands/bar.c
@@ -52,7 +52,7 @@ struct cmd_results *cmd_bar(int argc, char **argv) {
52 return cmd_results_new(CMD_FAILURE, "bar", 52 return cmd_results_new(CMD_FAILURE, "bar",
53 "Can only be used in config file."); 53 "Can only be used in config file.");
54 } 54 }
55 return subcommand(argv, argc, bar_config_handlers, 55 return config_subcommand(argv, argc, bar_config_handlers,
56 sizeof(bar_config_handlers)); 56 sizeof(bar_config_handlers));
57 } 57 }
58 58
@@ -111,5 +111,5 @@ struct cmd_results *cmd_bar(int argc, char **argv) {
111 wlr_log(L_DEBUG, "Creating bar %s", bar->id); 111 wlr_log(L_DEBUG, "Creating bar %s", bar->id);
112 } 112 }
113 113
114 return subcommand(argv, argc, bar_handlers, sizeof(bar_handlers)); 114 return config_subcommand(argv, argc, bar_handlers, sizeof(bar_handlers));
115} 115}
diff --git a/sway/commands/bar/colors.c b/sway/commands/bar/colors.c
index 6d3c09b8..8c862ca9 100644
--- a/sway/commands/bar/colors.c
+++ b/sway/commands/bar/colors.c
@@ -52,7 +52,7 @@ static struct cmd_results *parse_three_colors(char ***colors,
52} 52}
53 53
54struct cmd_results *bar_cmd_colors(int argc, char **argv) { 54struct cmd_results *bar_cmd_colors(int argc, char **argv) {
55 return subcommand(argv, argc, bar_colors_handlers, 55 return config_subcommand(argv, argc, bar_colors_handlers,
56 sizeof(bar_colors_handlers)); 56 sizeof(bar_colors_handlers));
57} 57}
58 58
diff --git a/sway/commands/input.c b/sway/commands/input.c
index 972160e2..22a0bb7c 100644
--- a/sway/commands/input.c
+++ b/sway/commands/input.c
@@ -42,8 +42,8 @@ struct cmd_results *cmd_input(int argc, char **argv) {
42 return cmd_results_new(CMD_FAILURE, NULL, "Couldn't allocate config"); 42 return cmd_results_new(CMD_FAILURE, NULL, "Couldn't allocate config");
43 } 43 }
44 44
45 struct cmd_results *res = subcommand(argv + 1, argc - 1, input_handlers, 45 struct cmd_results *res = config_subcommand(argv + 1, argc - 1,
46 sizeof(input_handlers)); 46 input_handlers, sizeof(input_handlers));
47 47
48 free_input_config(config->handler_context.input_config); 48 free_input_config(config->handler_context.input_config);
49 config->handler_context.input_config = NULL; 49 config->handler_context.input_config = NULL;
diff --git a/sway/commands/mode.c b/sway/commands/mode.c
index 31d0f251..00331ccc 100644
--- a/sway/commands/mode.c
+++ b/sway/commands/mode.c
@@ -65,8 +65,8 @@ struct cmd_results *cmd_mode(int argc, char **argv) {
65 } 65 }
66 66
67 // Create binding 67 // Create binding
68 struct cmd_results *result = subcommand(argv + 1, argc - 1, mode_handlers, 68 struct cmd_results *result = config_subcommand(argv + 1, argc - 1,
69 sizeof(mode_handlers)); 69 mode_handlers, sizeof(mode_handlers));
70 config->current_mode = config->modes->items[0]; 70 config->current_mode = config->modes->items[0];
71 71
72 return result; 72 return result;
diff --git a/sway/commands/seat.c b/sway/commands/seat.c
index 6080bf64..5e3c0bd0 100644
--- a/sway/commands/seat.c
+++ b/sway/commands/seat.c
@@ -24,8 +24,8 @@ struct cmd_results *cmd_seat(int argc, char **argv) {
24 "Couldn't allocate config"); 24 "Couldn't allocate config");
25 } 25 }
26 26
27 struct cmd_results *res = subcommand(argv + 1, argc - 1, seat_handlers, 27 struct cmd_results *res = config_subcommand(argv + 1, argc - 1,
28 sizeof(seat_handlers)); 28 seat_handlers, sizeof(seat_handlers));
29 29
30 free_seat_config(config->handler_context.seat_config); 30 free_seat_config(config->handler_context.seat_config);
31 config->handler_context.seat_config = NULL; 31 config->handler_context.seat_config = NULL;