updated for version 7.2.409
Problem: Summary of number of substitutes is incorrect for ":folddo". (Jean
Johner)
Solution: Reset sub_nsubs and sub_nlines in global_exe().
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index bf5af40..2296c33 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -5238,8 +5238,6 @@
type = *eap->cmd;
cmd = eap->arg;
which_pat = RE_LAST; /* default: use last used regexp */
- sub_nsubs = 0;
- sub_nlines = 0;
/*
* undocumented vi feature:
@@ -5343,6 +5341,8 @@
/* When the command writes a message, don't overwrite the command. */
msg_didout = TRUE;
+ sub_nsubs = 0;
+ sub_nlines = 0;
global_need_beginline = FALSE;
global_busy = 1;
old_lcount = curbuf->b_ml.ml_line_count;