diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-13 14:40:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-13 14:40:53 +0000 |
commit | 1e78deb0779bc403a914712f0842a65d2949dfdf (patch) | |
tree | 2e863626ef068d34cbe95a44e880c464ff631cd3 /src/feature.h | |
parent | 851f86b951cdd67ad9cf3149e46169d1375c8d82 (diff) | |
download | vim-git-1e78deb0779bc403a914712f0842a65d2949dfdf.tar.gz |
patch 8.2.3797: no good reason to limit the message history in tiny versionv8.2.3797
Problem: No good reason to limit the message history in the tiny version.
Solution: Always use 200.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/feature.h b/src/feature.h index 52a2e44b7..fa79d7a60 100644 --- a/src/feature.h +++ b/src/feature.h @@ -32,7 +32,7 @@ * ============== * * +tiny almost no features enabled, not even multiple windows - * +small few features enabled, as basic as possible + * +small as tiny plus cmdline window * +normal A default selection of features enabled * +big many features enabled, as rich as possible. * +huge all possible features enabled. @@ -120,13 +120,9 @@ */ /* - * Message history is fixed at 200 message, 20 for the tiny version. + * Message history is fixed at 200 messages. */ -#ifdef FEAT_SMALL -# define MAX_MSG_HIST_LEN 200 -#else -# define MAX_MSG_HIST_LEN 20 -#endif +#define MAX_MSG_HIST_LEN 200 #if defined(FEAT_SMALL) # define FEAT_CMDWIN |