comparison src/terminal.c @ 13458:0e7a56b18d61 v8.0.1603

patch 8.0.1603: cannot build with +terminal but without +menu commit https://github.com/vim/vim/commit/f118d4847eb0dc2473260aebce301643568c5bc3 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 13 13:14:00 2018 +0100 patch 8.0.1603: cannot build with +terminal but without +menu Problem: Cannot build with +terminal but without +menu. Solution: Add #ifdef. (Damien)
author Christian Brabandt <cb@256bit.org>
date Tue, 13 Mar 2018 13:15:07 +0100
parents a62b0bbc8834
children 6faef782f50b
comparison
equal deleted inserted replaced
13457:83319c33df2c 13458:0e7a56b18d61
2736 } 2736 }
2737 } 2737 }
2738 else 2738 else
2739 pos.col = 0; 2739 pos.col = 0;
2740 2740
2741 screen_line(wp->w_winrow + pos.row + winbar_height(wp), 2741 screen_line(wp->w_winrow + pos.row
2742 wp->w_wincol, pos.col, wp->w_width, FALSE); 2742 #ifdef FEAT_MENU
2743 + winbar_height(wp)
2744 #endif
2745 , wp->w_wincol, pos.col, wp->w_width, FALSE);
2743 } 2746 }
2744 term->tl_dirty_row_start = MAX_ROW; 2747 term->tl_dirty_row_start = MAX_ROW;
2745 term->tl_dirty_row_end = 0; 2748 term->tl_dirty_row_end = 0;
2746 2749
2747 return OK; 2750 return OK;