1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-04-20 00:53:52 +02:00

commands: Remove unused code after 1d3681f521

Clang 13 reports:

../sway/commands.c:470:23: error: variable 'context' set but not used
[-Werror,-Wunused-but-set-variable]
        enum command_context context = 0;
                             ^
Last use of was removed in commit 1d3681f521.

Downstream PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=258813
This commit is contained in:
Evgeniy Khramtsov 2021-10-01 16:11:39 +03:00 committed by Simon Ser
parent c43f1fbf1c
commit ff468584ab
2 changed files with 0 additions and 36 deletions

View File

@ -418,14 +418,6 @@ enum sway_popup_during_fullscreen {
POPUP_LEAVE,
};
enum command_context {
CONTEXT_CONFIG = 1 << 0,
CONTEXT_BINDING = 1 << 1,
CONTEXT_IPC = 1 << 2,
CONTEXT_CRITERIA = 1 << 3,
CONTEXT_ALL = 0xFFFFFFFF,
};
enum focus_follows_mouse_mode {
FOLLOWS_NO,
FOLLOWS_YES,

View File

@ -465,34 +465,6 @@ struct cmd_results *config_commands_command(char *exec) {
goto cleanup;
}
enum command_context context = 0;
struct {
char *name;
enum command_context context;
} context_names[] = {
{ "config", CONTEXT_CONFIG },
{ "binding", CONTEXT_BINDING },
{ "ipc", CONTEXT_IPC },
{ "criteria", CONTEXT_CRITERIA },
{ "all", CONTEXT_ALL },
};
for (int i = 1; i < argc; ++i) {
size_t j;
for (j = 0; j < sizeof(context_names) / sizeof(context_names[0]); ++j) {
if (strcmp(context_names[j].name, argv[i]) == 0) {
break;
}
}
if (j == sizeof(context_names) / sizeof(context_names[0])) {
results = cmd_results_new(CMD_INVALID,
"Invalid command context %s", argv[i]);
goto cleanup;
}
context |= context_names[j].context;
}
results = cmd_results_new(CMD_SUCCESS, NULL);
cleanup: