From c79bf4ec99951e42736522bd9362dfe347522c8e Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 25 Aug 2016 10:34:47 -0400 Subject: ops.c: Rename start_global_changes(). --- src/nvim/ex_cmds2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/ex_cmds2.c') diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 6d24ba91f2..da478f96dc 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -1983,7 +1983,7 @@ void ex_listdo(exarg_T *eap) save_ei = au_event_disable(",Syntax"); } - start_global_changes(); + start_batch_changes(); if (eap->cmdidx == CMD_windo || eap->cmdidx == CMD_tabdo @@ -2181,7 +2181,7 @@ void ex_listdo(exarg_T *eap) apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn, curbuf->b_fname, true, curbuf); } - end_global_changes(); + end_batch_changes(); } /// Add files[count] to the arglist of the current window after arg "after". -- cgit