diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-01-19 14:59:58 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-01-19 14:59:58 +0000 |
commit | 91a4e82243198d3c54b51296c532005daf5ccd3b (patch) | |
tree | c25223c268fa6be1229012ac34162233ef84e255 /src/option.c | |
parent | 4bad6c8d3dfe81d6171f20f1c3f7fc76bc2d89a7 (diff) | |
download | vim-git-7.1.236.tar.gz |
updated for version 7.1-236v7.1.236
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c index d0fc1b209..6ff0a218a 100644 --- a/src/option.c +++ b/src/option.c @@ -1991,6 +1991,13 @@ static struct vimoption {"redraw", NULL, P_BOOL|P_VI_DEF, (char_u *)NULL, PV_NONE, {(char_u *)FALSE, (char_u *)0L}}, + {"redrawtime", "rdt", P_NUM|P_VI_DEF, +#ifdef FEAT_RELTIME + (char_u *)&p_rdt, PV_NONE, +#else + (char_u *)NULL, PV_NONE, +#endif + {(char_u *)2000L, (char_u *)0L}}, {"remap", NULL, P_BOOL|P_VI_DEF, (char_u *)&p_remap, PV_NONE, {(char_u *)TRUE, (char_u *)0L}}, |