mirror of
https://github.com/swaywm/sway.git
synced 2024-11-01 05:57:17 +00:00
2a684cad5f
Patch tested by compiling with `__attribute__ ((format (printf, 2, 3)))` applied to `cmd_results_new`. String usage constants have been converted from pointers to arrays when encountered. General handler format strings were sometimes modified to include the old input string, especially for unknown command errors.
22 lines
700 B
C
22 lines
700 B
C
#include <string.h>
|
|
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
#include "util.h"
|
|
|
|
struct cmd_results *cmd_focus_follows_mouse(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "focus_follows_mouse", EXPECTED_EQUAL_TO, 1))) {
|
|
return error;
|
|
} else if(strcmp(argv[0], "no") == 0) {
|
|
config->focus_follows_mouse = FOLLOWS_NO;
|
|
} else if(strcmp(argv[0], "yes") == 0) {
|
|
config->focus_follows_mouse = FOLLOWS_YES;
|
|
} else if(strcmp(argv[0], "always") == 0) {
|
|
config->focus_follows_mouse = FOLLOWS_ALWAYS;
|
|
} else {
|
|
return cmd_results_new(CMD_FAILURE,
|
|
"Expected 'focus_follows_mouse no|yes|always'");
|
|
}
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|