comparison src/proto/optionstr.pro @ 29509:d61007cc39b3 v9.0.0096

patch 9.0.0096: flag "new_value_alloced" is always true Commit: https://github.com/vim/vim/commit/f6782732ab4acd02211923fbdccb457dacaf277e Author: zeertzjq <zeertzjq@outlook.com> Date: Wed Jul 27 18:26:03 2022 +0100 patch 9.0.0096: flag "new_value_alloced" is always true Problem: Flag "new_value_alloced" is always true. Solution: Remove "new_value_alloced". (closes https://github.com/vim/vim/issues/10792)
author Bram Moolenaar <Bram@vim.org>
date Wed, 27 Jul 2022 19:30:03 +0200
parents 05b240971884
children a7dba627a21b
comparison
equal deleted inserted replaced
29508:10d69d910f49 29509:d61007cc39b3
7 void check_string_option(char_u **pp); 7 void check_string_option(char_u **pp);
8 void set_string_option_direct(char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid); 8 void set_string_option_direct(char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid);
9 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); 9 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);
10 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); 10 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);
11 char *set_string_option(int opt_idx, char_u *value, int opt_flags); 11 char *set_string_option(int opt_idx, char_u *value, int opt_flags);
12 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); 12 char *did_set_string_option(int opt_idx, char_u **varp, char_u *oldval, char *errbuf, int opt_flags, int *value_checked);
13 int check_ff_value(char_u *p); 13 int check_ff_value(char_u *p);
14 /* vim: set ft=c : */ 14 /* vim: set ft=c : */