comparison src/proto/optionstr.pro @ 18100:df5778d73320 v8.1.2045

patch 8.1.2045: the option.c file is too big Commit: https://github.com/vim/vim/commit/dac1347b4d9c1a1aef6aa73fdea08a9d1077d6ea Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 16 21:06:21 2019 +0200 patch 8.1.2045: the option.c file is too big Problem: The option.c file is too big. Solution: Split off the code dealing with strings. (Yegappan Lakshmanan, closes #4937)
author Bram Moolenaar <Bram@vim.org>
date Mon, 16 Sep 2019 21:15:05 +0200
parents
children 05b240971884
comparison
equal deleted inserted replaced
18099:349ea1199661 18100:df5778d73320
1 /* optionstr.c */
2 void didset_string_options(void);
3 void trigger_optionsset_string(int opt_idx, int opt_flags, char_u *oldval, char_u *oldval_l, char_u *oldval_g, char_u *newval);
4 char *did_set_string_option(int opt_idx, char_u **varp, int new_value_alloced, char_u *oldval, char *errbuf, int opt_flags, int *value_checked);
5 void check_buf_options(buf_T *buf);
6 void free_string_option(char_u *p);
7 void clear_string_option(char_u **pp);
8 void check_string_option(char_u **pp);
9 void set_string_option_direct(char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid);
10 void set_string_option_direct_in_win(win_T *wp, char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid);
11 void set_string_option_direct_in_buf(buf_T *buf, char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid);
12 char *set_string_option(int opt_idx, char_u *value, int opt_flags);
13 int check_ff_value(char_u *p);
14 /* vim: set ft=c : */