comparison src/window.c @ 14862:27b9a84395b5 v8.1.0443

patch 8.1.0443: unnecessary static function prototypes commit https://github.com/vim/vim/commit/6dff58f15cede9139b2fcfc64c9064326ea3d3b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 30 21:43:26 2018 +0200 patch 8.1.0443: unnecessary static function prototypes Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Sep 2018 21:45:07 +0200
parents a74786d0370c
children 1fd8e32532f7
comparison
equal deleted inserted replaced
14861:41fbdae837df 14862:27b9a84395b5
18 static void frame_setwidth(frame_T *curfrp, int width); 18 static void frame_setwidth(frame_T *curfrp, int width);
19 static void win_exchange(long); 19 static void win_exchange(long);
20 static void win_rotate(int, int); 20 static void win_rotate(int, int);
21 static void win_totop(int size, int flags); 21 static void win_totop(int size, int flags);
22 static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height); 22 static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height);
23 static int last_window(void);
24 static int close_last_window_tabpage(win_T *win, int free_buf, tabpage_T *prev_curtab);
25 static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp); 23 static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp);
26 static frame_T *win_altframe(win_T *win, tabpage_T *tp); 24 static frame_T *win_altframe(win_T *win, tabpage_T *tp);
27 static tabpage_T *alt_tabpage(void); 25 static tabpage_T *alt_tabpage(void);
28 static win_T *frame2win(frame_T *frp); 26 static win_T *frame2win(frame_T *frp);
29 static int frame_has_win(frame_T *frp, win_T *wp); 27 static int frame_has_win(frame_T *frp, win_T *wp);
6244 6242
6245 return find_file_name_in_path(ptr, len, options, count, rel_fname); 6243 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6246 } 6244 }
6247 6245
6248 # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL) 6246 # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6249 static char_u *eval_includeexpr(char_u *ptr, int len);
6250
6251 static char_u * 6247 static char_u *
6252 eval_includeexpr(char_u *ptr, int len) 6248 eval_includeexpr(char_u *ptr, int len)
6253 { 6249 {
6254 char_u *res; 6250 char_u *res;
6255 6251