diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-21 22:38:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-21 22:38:18 +0200 |
commit | c96ebe75e57657fe92fdba9346661a3ac5537821 (patch) | |
tree | 4ad43f3edad3465129348d21a159b490851fc949 /src/proto/option.pro | |
parent | 2a0f3d3fb2a7e26d47810098894f8e615571afe3 (diff) | |
download | vim-git-c96ebe75e57657fe92fdba9346661a3ac5537821.tar.gz |
updated for version 7.3.1004v7.3.1004
Problem: No error when option could not be set.
Solution: Report an error. (ZyX)
Diffstat (limited to 'src/proto/option.pro')
-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 681fa4592..853a34252 100644 --- a/src/proto/option.pro +++ b/src/proto/option.pro @@ -23,7 +23,7 @@ char_u *check_colorcolumn __ARGS((win_T *wp)); char_u *check_stl_option __ARGS((char_u *s)); int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int opt_flags)); int get_option_value_strict __ARGS((char_u *name, long *numval, char_u **stringval, int opt_type, void *from)); -void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags)); +char_u *set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags)); char_u *get_term_code __ARGS((char_u *tname)); char_u *get_highlight_default __ARGS((void)); char_u *get_encoding_default __ARGS((void)); |