diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-04-29 10:05:51 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-04-29 10:05:51 +0000 |
commit | 876f6d7f3c38fb946b9c361d7e5d49f16f04eef2 (patch) | |
tree | 3ca1c75a6661b193a77576d66da9bbacffc124ed /src/ex_getln.c | |
parent | 04c0f8a9b0d4b16b003219b9a0a5d5e4115c58e0 (diff) | |
download | vim-git-876f6d7f3c38fb946b9c361d7e5d49f16f04eef2.tar.gz |
updated for version 7.2-163v7.2.163
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index 3bf78db79..f3bcc2bee 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -6073,6 +6073,9 @@ ex_window() set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); curbuf->b_p_ma = TRUE; +#ifdef FEAT_FOLDING + curwin->w_p_fen = FALSE; +#endif # ifdef FEAT_RIGHTLEFT curwin->w_p_rl = cmdmsg_rl; cmdmsg_rl = FALSE; |