summaryrefslogtreecommitdiffstats
path: root/src/proto/option.pro
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-06-09 18:24:05 +0200
committerChristian Brabandt <cb@256bit.org>2024-06-09 18:24:05 +0200
commitaa925eeb97bd294d4a5253a3194949a37cbc8365 (patch)
tree2fdbf5c016df3dd441872faa38a95060e43845aa /src/proto/option.pro
parent2d1d5c6c27b0abe7494cb07dd56a47d61ae95169 (diff)
patch 9.1.0472: Inconsistencies between functions for option flagsv9.1.0472
Problem: Inconsistencies between functions for option flags. Solution: Consistently use "unsigned int" as return type and rename get_bkc_value() to get_bkc_flags() (zeertzjq). closes: #14925 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/proto/option.pro')
-rw-r--r--src/proto/option.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/option.pro b/src/proto/option.pro
index be7ee959cf..69463d44fc 100644
--- a/src/proto/option.pro
+++ b/src/proto/option.pro
@@ -139,7 +139,7 @@ int reset_option_was_set(char_u *name);
int can_bs(int what);
long get_scrolloff_value(void);
long get_sidescrolloff_value(void);
-unsigned int get_bkc_value(buf_T *buf);
+unsigned int get_bkc_flags(buf_T *buf);
char_u *get_flp_value(buf_T *buf);
unsigned int get_ve_flags(void);
char_u *get_showbreak_value(win_T *win);