mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.1256
Problem: Can't build without eval or autocmd feature. Solution: Add #ifdefs.
This commit is contained in:
@@ -53,10 +53,10 @@ static void win_free __ARGS((win_T *wp, tabpage_T *tp));
|
||||
static void frame_append __ARGS((frame_T *after, frame_T *frp));
|
||||
static void frame_insert __ARGS((frame_T *before, frame_T *frp));
|
||||
static void frame_remove __ARGS((frame_T *frp));
|
||||
#ifdef FEAT_VERTSPLIT
|
||||
# ifdef FEAT_VERTSPLIT
|
||||
static void win_goto_ver __ARGS((int up, long count));
|
||||
static void win_goto_hor __ARGS((int left, long count));
|
||||
#endif
|
||||
# endif
|
||||
static void frame_add_height __ARGS((frame_T *frp, int n));
|
||||
static void last_status_rec __ARGS((frame_T *fr, int statusline));
|
||||
|
||||
@@ -6928,6 +6928,7 @@ get_tab_number(tabpage_T *tp UNUSED)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef FEAT_WINDOWS
|
||||
/*
|
||||
* Return TRUE if "topfrp" and its children are at the right height.
|
||||
*/
|
||||
@@ -6948,6 +6949,7 @@ frame_check_height(topfrp, height)
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef FEAT_VERTSPLIT
|
||||
/*
|
||||
|
Reference in New Issue
Block a user