1
0
forked from aniani/vim

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().
This commit is contained in:
Bram Moolenaar
2020-08-12 21:58:12 +02:00
parent 418f1df547
commit 66e0014ba6
5 changed files with 8 additions and 6 deletions

View File

@@ -3553,7 +3553,7 @@ typedef struct {
* 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;