diff options
-rw-r--r-- | src/option.h | 3 | ||||
-rw-r--r-- | src/vim.h | 9 |
2 files changed, 0 insertions, 12 deletions
diff --git a/src/option.h b/src/option.h index bf0e3d9cf9..818f4bc2ee 100644 --- a/src/option.h +++ b/src/option.h @@ -26,9 +26,6 @@ char_u *check_colorcolumn(win_T *wp); char_u *check_stl_option(char_u *s); int get_option_value(char_u *name, long *numval, char_u **stringval, int opt_flags); -int get_option_value_strict(char_u *name, long *numval, char_u * - *stringval, int opt_type, - void *from); char_u *option_iter_next(void **option, int opt_type); char_u *set_option_value(char_u *name, long number, char_u *string, int opt_flags); @@ -1382,15 +1382,6 @@ typedef int VimClipboard; /* This is required for the prototypes. */ #define FILEINFO_READ_FAIL 2 /* CreateFile() failed */ #define FILEINFO_INFO_FAIL 3 /* GetFileInformationByHandle() failed */ -/* Return value from get_option_value_strict */ -#define SOPT_BOOL 0x01 /* Boolean option */ -#define SOPT_NUM 0x02 /* Number option */ -#define SOPT_STRING 0x04 /* String option */ -#define SOPT_GLOBAL 0x08 /* Option has global value */ -#define SOPT_WIN 0x10 /* Option has window-local value */ -#define SOPT_BUF 0x20 /* Option has buffer-local value */ -#define SOPT_UNSET 0x40 /* Option does not have local value set */ - /* Option types for various functions in option.c */ #define SREQ_GLOBAL 0 /* Request global option */ #define SREQ_WIN 1 /* Request window-local option */ |