File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ static char *(features[]) =
761761
762762static int included_patches [] =
763763{ /* Add new patch number below this line */
764+ /**/
765+ 1129 ,
764766/**/
765767 1128 ,
766768/**/
Original file line number Diff line number Diff line change @@ -864,7 +864,11 @@ extern int (*dyn_libintl_putenv)(const char *envstring);
864864#define W_ENDCOL (wp ) (wp->w_wincol + wp->w_width)
865865#define W_VSEP_WIDTH (wp ) (wp->w_vsep_width)
866866#define W_STATUS_HEIGHT (wp ) (wp->w_status_height)
867- #define W_WINROW (wp ) (wp->w_winrow)
867+ #ifdef FEAT_MENU
868+ # define W_WINROW (wp ) (wp->w_winrow + wp->w_winbar_height)
869+ #else
870+ # define W_WINROW (wp ) (wp->w_winrow)
871+ #endif
868872
869873#ifdef NO_EXPANDPATH
870874# define gen_expand_wildcards mch_expand_wildcards
You can’t perform that action at this time.
0 commit comments