summaryrefslogtreecommitdiff
path: root/src/proto/ex_cmds2.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-10 21:27:18 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-10 21:27:18 +0200
commit840d16fd36bfd1a9fac8200e3dc016b1e3f9c328 (patch)
treee0b85aeb6c3da97a0f8096ef934372f9b297ba7b /src/proto/ex_cmds2.pro
parentd20dcb3d011da6111153109f6e46fbd5c7fe9fb6 (diff)
downloadvim-git-840d16fd36bfd1a9fac8200e3dc016b1e3f9c328.tar.gz
patch 8.1.2021: some global functions can be local to the filev8.1.2021
Problem: Some global functions can be local to the file. Solution: Add "static". (Yegappan Lakshmanan, closes #4917)
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r--src/proto/ex_cmds2.pro4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro
index 2ecda169f..9f694da93 100644
--- a/src/proto/ex_cmds2.pro
+++ b/src/proto/ex_cmds2.pro
@@ -2,11 +2,7 @@
long proftime_time_left(proftime_T *due, proftime_T *now);
timer_T *create_timer(long msec, int repeat);
long check_due_timer(void);
-timer_T *find_timer(long id);
void stop_timer(timer_T *timer);
-void stop_all_timers(void);
-void add_timer_info(typval_T *rettv, timer_T *timer);
-void add_timer_info_all(typval_T *rettv);
int set_ref_in_timer(int copyID);
void timer_free_all(void);
void f_timer_info(typval_T *argvars, typval_T *rettv);