diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-18 18:04:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-18 18:04:50 +0200 |
commit | 6df6f47d6dc59fe82b95b9c2f4a4d542fd5ac239 (patch) | |
tree | 4832d5b27b1220617848917e3036687e3167557d /src/ex_docmd.c | |
parent | dc536095ac452c12e9bb4c69b473d28d51e8d4b9 (diff) | |
download | vim-git-6df6f47d6dc59fe82b95b9c2f4a4d542fd5ac239.tar.gz |
Make automatic prototype generation work with more interfaces.
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 1dab50167..c57db9496 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; { |