diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-19 23:21:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-19 23:21:55 +0200 |
commit | 4bd782339e370bde82c2a8976df9f335cc12eba9 (patch) | |
tree | 9422e4c3656444037cc7547c8c7de3ed1c71e909 /src/ex_cmds.h | |
parent | 7528d1f6b5422750eb778dfb550cfd0b0e540964 (diff) | |
download | vim-git-4bd782339e370bde82c2a8976df9f335cc12eba9.tar.gz |
patch 8.1.2058: function for ex command is named inconsistentlyv8.1.2058
Problem: Function for ex command is named inconsistently.
Solution: Rename do_marks() to ex_marks().
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 2490b5424..09d62a9c8 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -928,7 +928,7 @@ EXCMD(CMD_map, "map", ex_map, EXCMD(CMD_mapclear, "mapclear", ex_mapclear, EX_EXTRA|EX_BANG|EX_TRLBAR|EX_CMDWIN, ADDR_NONE), -EXCMD(CMD_marks, "marks", do_marks, +EXCMD(CMD_marks, "marks", ex_marks, EX_EXTRA|EX_TRLBAR|EX_CMDWIN, ADDR_NONE), EXCMD(CMD_match, "match", ex_match, |