summaryrefslogtreecommitdiff
path: root/src/proto/evalfunc.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-11 21:14:24 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-11 21:14:24 +0200
commita334772967de25764ed7b11d768e8b977818d0c6 (patch)
tree1f5b7b787eb7b18e2adb6aee66843837d64cdb99 /src/proto/evalfunc.pro
parent6d2399bd1053b367e13cc2b8991d3ff0bf724c7c (diff)
downloadvim-git-a334772967de25764ed7b11d768e8b977818d0c6.tar.gz
patch 8.1.1321: no docs or tests for listener functionsv8.1.1321
Problem: No docs or tests for listener functions. Solution: Add help and tests for listener_add() and listener_remove(). Invoke the callbacks before redrawing.
Diffstat (limited to 'src/proto/evalfunc.pro')
-rw-r--r--src/proto/evalfunc.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/evalfunc.pro b/src/proto/evalfunc.pro
index c0ada9d9f..5a53136cf 100644
--- a/src/proto/evalfunc.pro
+++ b/src/proto/evalfunc.pro
@@ -5,6 +5,7 @@ int find_internal_func(char_u *name);
int call_internal_func(char_u *name, int argcount, typval_T *argvars, typval_T *rettv);
buf_T *buflist_find_by_name(char_u *name, int curtab_only);
buf_T *tv_get_buf(typval_T *tv, int curtab_only);
+buf_T *get_buf_arg(typval_T *arg);
void execute_redir_str(char_u *value, int value_len);
void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv);
float_T vim_round(float_T f);