0
0
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:
Bram Moolenaar
2013-06-28 20:16:55 +02:00
parent 22dbc77ef1
commit f0327f67c7
3 changed files with 17 additions and 4 deletions

View File

@@ -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
/*