summaryrefslogtreecommitdiff
path: root/src/proto/evalfunc.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-22 13:28:07 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-22 13:28:07 +0100
commit461a7fcfce3cd6414f990037e6468af3b5ccf119 (patch)
tree6498b1cf892206698e8b6951af503f6a953bf5ac /src/proto/evalfunc.pro
parent528ccfbaa1cc805f430a750c551e5a9fd7eb54fe (diff)
downloadvim-git-461a7fcfce3cd6414f990037e6468af3b5ccf119.tar.gz
patch 8.1.0619: :echomsg and :echoerr do not handle List and Dictv8.1.0619
Problem: :echomsg and :echoerr do not handle List and Dict like :echo does. (Daniel Hahler) Solution: Be more tolerant about the expression result type.
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 c79b59c0d..09861628b 100644
--- a/src/proto/evalfunc.pro
+++ b/src/proto/evalfunc.pro
@@ -9,6 +9,7 @@ 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);
long do_searchpair(char_u *spat, char_u *mpat, char_u *epat, int dir, typval_T *skip, int flags, pos_T *match_pos, linenr_T lnum_stop, long time_limit);
+void f_string(typval_T *argvars, typval_T *rettv);
char_u *get_callback(typval_T *arg, partial_T **pp);
void free_callback(char_u *callback, partial_T *partial);
/* vim: set ft=c : */