diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
commit | 6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch) | |
tree | f2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/window.c | |
parent | f45d747ebf920940b041f5c75c2bfdffb6b670ae (diff) | |
download | vim-git-6dff58f15cede9139b2fcfc64c9064326ea3d3b0.tar.gz |
patch 8.1.0443: unnecessary static function prototypesv8.1.0443
Problem: Unnecessary static function prototypes.
Solution: Remove unnecessary prototypes.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c index b50d835e4..e16570f4e 100644 --- a/src/window.c +++ b/src/window.c @@ -20,8 +20,6 @@ static void win_exchange(long); static void win_rotate(int, int); static void win_totop(int size, int flags); static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height); -static int last_window(void); -static int close_last_window_tabpage(win_T *win, int free_buf, tabpage_T *prev_curtab); static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp); static frame_T *win_altframe(win_T *win, tabpage_T *tp); static tabpage_T *alt_tabpage(void); @@ -6246,8 +6244,6 @@ file_name_in_line( } # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL) -static char_u *eval_includeexpr(char_u *ptr, int len); - static char_u * eval_includeexpr(char_u *ptr, int len) { |