mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-18 06:46:23 -04:00
ci: fix misspellings
This commit is contained in:
parent
50868caece
commit
85b6e63f4f
3 changed files with 4 additions and 4 deletions
4
config.c
4
config.c
|
|
@ -2868,7 +2868,7 @@ parse_config_file(FILE *f, struct config *conf, const char *path, bool errors_ar
|
||||||
errno = 0;
|
errno = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set `alpha_non_whitespace` to atleast `alpha`. */
|
/* Set `alpha_non_whitespace` to at least `alpha`. */
|
||||||
conf->colors.alpha_non_whitespace = max(conf->colors.alpha_non_whitespace, conf->colors.alpha);
|
conf->colors.alpha_non_whitespace = max(conf->colors.alpha_non_whitespace, conf->colors.alpha);
|
||||||
|
|
||||||
if (errno != 0) {
|
if (errno != 0) {
|
||||||
|
|
@ -3111,7 +3111,7 @@ config_load(struct config *conf, const char *conf_path,
|
||||||
.alpha = 0xffff,
|
.alpha = 0xffff,
|
||||||
/* HACK:
|
/* HACK:
|
||||||
* when `alpha_non_whitespace` is not set its
|
* when `alpha_non_whitespace` is not set its
|
||||||
* default value will be `alpha`. This is achived via
|
* default value will be `alpha`. This is achieved via
|
||||||
* restricting it to be at least the value of `alpha`
|
* restricting it to be at least the value of `alpha`
|
||||||
*/
|
*/
|
||||||
.alpha_non_whitespace = 0x0000,
|
.alpha_non_whitespace = 0x0000,
|
||||||
|
|
|
||||||
2
config.h
2
config.h
|
|
@ -84,7 +84,7 @@ enum key_binding_type {
|
||||||
typedef tll(char *) config_modifier_list_t;
|
typedef tll(char *) config_modifier_list_t;
|
||||||
|
|
||||||
struct config_key_binding {
|
struct config_key_binding {
|
||||||
int action; /* One of the varios bind_action_* enums from wayland.h */
|
int action; /* One of the various bind_action_* enums from wayland.h */
|
||||||
//struct config_key_modifiers modifiers;
|
//struct config_key_modifiers modifiers;
|
||||||
config_modifier_list_t modifiers;
|
config_modifier_list_t modifiers;
|
||||||
union {
|
union {
|
||||||
|
|
|
||||||
2
ime.c
2
ime.c
|
|
@ -175,7 +175,7 @@ done(void *data, struct zwp_text_input_v3 *zwp_text_input_v3,
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 2. Delete requested surroundin text
|
* 2. Delete requested surrounding text
|
||||||
*
|
*
|
||||||
* We don't support deleting surrounding text. But, we also never
|
* We don't support deleting surrounding text. But, we also never
|
||||||
* call set_surrounding_text() so hopefully we should never
|
* call set_surrounding_text() so hopefully we should never
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue