commit | 66e0014ba651208ab7579797866ab0e4bd9e2b49 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Aug 12 21:58:12 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Aug 12 21:58:12 2020 +0200 |
tree | fa4b3456bd7fa121b84e7ad9906d62401923adf2 | |
parent | 418f1df54763b79600db1c91c880fbc1007b2e1f [diff] [blame] |
patch 8.2.1436: function implementing :substitute has unexpected name Problem: Function implementing :substitute has unexpected name. Solution: Rename from do_sub() to ex_substitute().
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 88161fa..2550f0e 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c
@@ -3553,7 +3553,7 @@ * The usual escapes are supported as described in the regexp docs. */ void -do_sub(exarg_T *eap) +ex_substitute(exarg_T *eap) { linenr_T lnum; long i = 0;