Mercurial > vim
view src/proto/optionstr.pro @ 31463:db72745d328c v9.0.1064
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Commit: https://github.com/vim/vim/commit/9aee8ec400fe617f6d82441c46a22d0cef6fa3e6
Author: Christian Brabandt <cb@256bit.org>
Date: Fri Dec 16 16:41:23 2022 +0000
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Problem: Code for making 'shortmess' temporarily empty is repeated.
Solution: Add functions for making 'shortmess' empty and restoring it.
(Christian Brabandt, closes #11709)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 16 Dec 2022 17:45:04 +0100 |
parents | a7dba627a21b |
children | b0717fcca5eb |
line wrap: on
line source
/* optionstr.c */ void didset_string_options(void); void trigger_optionset_string(int opt_idx, int opt_flags, char_u *oldval, char_u *oldval_l, char_u *oldval_g, char_u *newval); void check_buf_options(buf_T *buf); void free_string_option(char_u *p); void clear_string_option(char_u **pp); void check_string_option(char_u **pp); void set_string_option_direct(char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid); 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); 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); char *set_string_option(int opt_idx, char_u *value, int opt_flags); char *did_set_string_option(int opt_idx, char_u **varp, char_u *oldval, char *errbuf, int opt_flags, int *value_checked); int check_ff_value(char_u *p); void save_clear_shm_value(void); void restore_shm_value(void); /* vim: set ft=c : */