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/mark.c | |
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/mark.c')
-rw-r--r-- | src/mark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mark.c b/src/mark.c index 8a18040c7..a77e7b9dd 100644 --- a/src/mark.c +++ b/src/mark.c @@ -699,7 +699,7 @@ mark_line(pos_T *mp, int lead_len) * print the marks */ void -do_marks(exarg_T *eap) +ex_marks(exarg_T *eap) { char_u *arg = eap->arg; int i; |