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)
diff --git a/src/option.h b/src/option.h
index a11fa41..aa55bfb 100644
--- a/src/option.h
+++ b/src/option.h
@@ -271,6 +271,8 @@
#define SHM_SEARCHCOUNT 'S' // search stats: '[1/10]'
#define SHM_POSIX "AS" // POSIX value
#define SHM_ALL "rmfixlnwaWtToOsAIcCqFS" // all possible flags for 'shm'
+#define SHM_LEN 30 // max length of all flags together
+ // plus a NUL character
// characters for p_go:
#define GO_TERMINAL '!' // use terminal for system commands