diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-09-19 20:41:08 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-09-21 08:43:06 -0400 |
commit | 42a05130955829847e68c1af5add386596b697fd (patch) | |
tree | a7c4b8c410224a306963a084b82202b6007546b8 /src/nvim/mark.c | |
parent | 1c71a3c657ed7668de0d0fc3fae928d8857a62cb (diff) | |
download | rneovim-42a05130955829847e68c1af5add386596b697fd.tar.gz rneovim-42a05130955829847e68c1af5add386596b697fd.tar.bz2 rneovim-42a05130955829847e68c1af5add386596b697fd.zip |
vim-patch:8.1.2058: function for ex command is named inconsistently
Problem: Function for ex command is named inconsistently.
Solution: Rename do_marks() to ex_marks().
https://github.com/vim/vim/commit/4bd782339e370bde82c2a8976df9f335cc12eba9
Diffstat (limited to 'src/nvim/mark.c')
-rw-r--r-- | src/nvim/mark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mark.c b/src/nvim/mark.c index e103d3cb55..e8f1651a6e 100644 --- a/src/nvim/mark.c +++ b/src/nvim/mark.c @@ -616,7 +616,7 @@ static char_u *mark_line(pos_T *mp, int lead_len) /* * print the marks */ -void do_marks(exarg_T *eap) +void ex_marks(exarg_T *eap) { char_u *arg = eap->arg; int i; |