summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-31 20:24:32 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-31 20:24:32 +0100
commitfb1f62691eae7c79a28b3b17a60e72ce198c71a2 (patch)
tree92456937dc3d372bf30b97df3c5b5148ea2a8243 /src/ex_docmd.c
parent155500077c80cdb5d9c63996000c011b66a676bf (diff)
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/ex_docmd.c')
-rw-r--r--src/ex_docmd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 028af35c66..1321b7fd66 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -335,7 +335,6 @@ static void ex_rundo(exarg_T *eap);
static void ex_redo(exarg_T *eap);
static void ex_later(exarg_T *eap);
static void ex_redir(exarg_T *eap);
-static void ex_redraw(exarg_T *eap);
static void ex_redrawstatus(exarg_T *eap);
static void close_redir(void);
static void ex_mkrc(exarg_T *eap);
@@ -9466,7 +9465,7 @@ ex_redir(exarg_T *eap)
/*
* ":redraw": force redraw
*/
- static void
+ void
ex_redraw(exarg_T *eap)
{
int r = RedrawingDisabled;