diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-03 22:49:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-03 22:49:16 +0100 |
commit | ed767a2073ef150971b0439a58e7ee582af6984e (patch) | |
tree | fac1ce186731fb31fc9e4e9f689b25284ca5c6c3 /src/proto | |
parent | 022b896592721838e387e99fd785d3ded7b68be7 (diff) | |
download | vim-git-ed767a2073ef150971b0439a58e7ee582af6984e.tar.gz |
patch 7.4.1042v7.4.1042
Problem: g-CTRL-G shows the word count, but there is no way to get the word
count in a script.
Solution: Add the wordcount() function. (Christian Brabandt)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ops.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ops.pro b/src/proto/ops.pro index f9b53c08f..aaffa0202 100644 --- a/src/proto/ops.pro +++ b/src/proto/ops.pro @@ -58,5 +58,5 @@ void write_reg_contents __ARGS((int name, char_u *str, int maxlen, int must_appe void write_reg_contents_lst __ARGS((int name, char_u **strings, int maxlen, int must_append, int yank_type, long block_len)); void write_reg_contents_ex __ARGS((int name, char_u *str, int maxlen, int must_append, int yank_type, long block_len)); void clear_oparg __ARGS((oparg_T *oap)); -void cursor_pos_info __ARGS((void)); +void cursor_pos_info __ARGS((dict_T *eval)); /* vim: set ft=c : */ |