summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-08-21 13:29:28 +0000
committerBram Moolenaar <Bram@vim.org>2007-08-21 13:29:28 +0000
commiteb1b6790676b0e0577aeee350ca66e1919c27369 (patch)
tree7952a6d670f07bdc59936c08889d5cf1b3a12507 /src/ex_cmds.c
parentdd87969c8b3e106af71efd17c76c682f903b45cb (diff)
updated for version 7.1-085v7.1.085
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 1b2672fd28..958f3abd39 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -2974,7 +2974,7 @@ check_readonly(forceit, buf)
* 'fnum' is the number of the file, if zero use ffname/sfname.
*
* Return 1 for "normal" error, 2 for "not written" error, 0 for success
- * -1 for succesfully opening another file.
+ * -1 for successfully opening another file.
* 'lnum' is the line number for the cursor in the new file (if non-zero).
*/
int
@@ -3584,9 +3584,20 @@ do_ecmd(fnum, ffname, sfname, eap, newlnum, flags)
curwin_init();
#ifdef FEAT_FOLDING
- /* It's like all lines in the buffer changed. Need to update
- * automatic folding. */
+ /* It's possible that all lines in the buffer changed. Need to update
+ * automatic folding for all windows where it's used. */
+# ifdef FEAT_WINDOWS
+ {
+ win_T *win;
+ tabpage_T *tp;
+
+ FOR_ALL_TAB_WINDOWS(tp, win)
+ if (win->w_buffer == curbuf)
+ foldUpdateAll(win);
+ }
+# else
foldUpdateAll(curwin);
+# endif
#endif
/* Change directories when the 'acd' option is set. */