diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-13 20:31:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-13 20:31:54 +0200 |
commit | fe8ef98dd1d0b7d296d7db29b1e2fd1b56b788de (patch) | |
tree | e59e23d496796a07ef980df1b99cf26a58d0309f /src/proto | |
parent | c91c500348f3f026a06d1c3565b380d86b8c55ee (diff) | |
download | vim-git-fe8ef98dd1d0b7d296d7db29b1e2fd1b56b788de.tar.gz |
patch 8.1.0386: cannot test with non-default option valuev8.1.0386
Problem: Cannot test with non-default option value.
Solution: Add test_option_not_set().
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/option.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/option.pro b/src/proto/option.pro index 679329df3..b65cb45bf 100644 --- a/src/proto/option.pro +++ b/src/proto/option.pro @@ -55,7 +55,7 @@ int shortmess(int x); void vimrc_found(char_u *fname, char_u *envname); void change_compatible(int on); int option_was_set(char_u *name); -void reset_option_was_set(char_u *name); +int reset_option_was_set(char_u *name); int can_bs(int what); void save_file_ff(buf_T *buf); int file_ff_differs(buf_T *buf, int ignore_empty); |