summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-18 18:04:50 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-18 18:04:50 +0200
commit6df6f47d6dc59fe82b95b9c2f4a4d542fd5ac239 (patch)
tree4832d5b27b1220617848917e3036687e3167557d /src/ex_docmd.c
parentdc536095ac452c12e9bb4c69b473d28d51e8d4b9 (diff)
Make automatic prototype generation work with more interfaces.
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 1dab501674..c57db94968 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8491,7 +8491,7 @@ ex_undo(eap)
}
#ifdef FEAT_PERSISTENT_UNDO
- void
+ static void
ex_wundo(eap)
exarg_T *eap;
{
@@ -8501,7 +8501,7 @@ ex_wundo(eap)
u_write_undo(eap->arg, eap->forceit, curbuf, hash);
}
- void
+ static void
ex_rundo(eap)
exarg_T *eap;
{