summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-11-02 21:01:19 +0100
committerChristian Brabandt <cb@256bit.org>2023-11-02 21:01:19 +0100
commitdeba02ddd46e9e8adfe2f7800c6be19d8c8e1a4d (patch)
tree3ba3c10ae5e18aa06d8bb5f211deaffbe9f58d9d /src/structs.h
parent2b358adde079d7cc8a7f42fcd5627866641c9a59 (diff)
patch 9.0.2086: code cleanup for option callbacks neededv9.0.2086
Problem: code cleanup for option callbacks needed Solution: remove flag os_doskip, it's not necessary, as we can check, whether an error message was returned Remove unnecessary field os_doskip Callback functions for boolean options set os_doskip immediately before returning an error message, so os_doskip isn't actually needed. closes: #13461 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/structs.h b/src/structs.h
index 36968741e3..4e081b860e 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -4948,10 +4948,6 @@ typedef struct
char_u *string;
} os_newval;
- // When set by the called function: Stop processing the option further.
- // Currently only used for boolean options.
- int os_doskip;
-
// Option value was checked to be safe, no need to set P_INSECURE
// Used for the 'keymap', 'filetype' and 'syntax' options.
int os_value_checked;