diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-31 20:24:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-31 20:24:32 +0100 |
commit | fb1f62691eae7c79a28b3b17a60e72ce198c71a2 (patch) | |
tree | 92456937dc3d372bf30b97df3c5b5148ea2a8243 /src/proto/ex_docmd.pro | |
parent | 155500077c80cdb5d9c63996000c011b66a676bf (diff) | |
download | vim-git-fb1f62691eae7c79a28b3b17a60e72ce198c71a2.tar.gz |
patch 7.4.1229v7.4.1229
Problem: "eval" and "expr" channel commands don't work yet.
Solution: Implement them. Update the error numbers. Also add "redraw".
Diffstat (limited to 'src/proto/ex_docmd.pro')
-rw-r--r-- | src/proto/ex_docmd.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro index 0ba0fd711..6ff1588e9 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -46,6 +46,7 @@ void post_chdir(int local); void ex_cd(exarg_T *eap); void do_sleep(long msec); void ex_may_print(exarg_T *eap); +void ex_redraw(exarg_T *eap); int vim_mkdir_emsg(char_u *name, int prot); FILE *open_exfile(char_u *fname, int forceit, char *mode); void update_topline_cursor(void); |