diff src/ex_docmd.c @ 2340:99c1eba60b2d vim73

Make automatic prototype generation work with more interfaces.
author Bram Moolenaar <bram@vim.org>
date Sun, 18 Jul 2010 18:04:50 +0200
parents aee7e1e5e0ce
children 06feaf4fe36a
line wrap: on
line diff
--- 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;
 {