diff 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 diff
--- a/src/proto/optionstr.pro
+++ b/src/proto/optionstr.pro
@@ -11,4 +11,6 @@ void set_string_option_direct_in_buf(buf
 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 : */