diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-30 16:01:37 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-30 16:01:37 +0200 |
commit | 6773b2ba7e716cfa89a71b8a3a1ed98ffb186646 (patch) | |
tree | 5e17c3091dc97ada4a49dcecc148edbad34b84f0 /src/feature.h | |
parent | 644fdff7c1a80b3cf9a52f422df7f7ed2a084072 (diff) | |
download | vim-git-6773b2ba7e716cfa89a71b8a3a1ed98ffb186646.tar.gz |
A bit of cleanup and simplification for undofile.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index 61fe3345b..e786e282e 100644 --- a/src/feature.h +++ b/src/feature.h @@ -130,7 +130,7 @@ * Message history is fixed at 100 message, 20 for the tiny version. */ #ifdef FEAT_SMALL -# define MAX_MSG_HIST_LEN 100 +# define MAX_MSG_HIST_LEN 200 #else # define MAX_MSG_HIST_LEN 20 #endif |