diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-16 21:34:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-16 21:34:25 +0100 |
commit | 4ac31eeff0409de0b1fe2d9e9f678859656ac4ae (patch) | |
tree | 0a167479a203b89891c21a921bb0138f6beb486b /src/terminal.c | |
parent | 135682517bc378cfdb63fe3a6e3553935f69f6ce (diff) | |
download | vim-git-4ac31eeff0409de0b1fe2d9e9f678859656ac4ae.tar.gz |
patch 8.0.1610: cannot build without GUIv8.0.1610
Problem: Cannot build without GUI.
Solution: Add #ifdef.
Diffstat (limited to 'src/terminal.c')
-rw-r--r-- | src/terminal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/terminal.c b/src/terminal.c index 89a354175..bff83d24b 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -2735,6 +2735,7 @@ term_line2screenline(VTermScreen *screen, VTermPos *pos, int max_col) } } +#if defined(FEAT_GUI) static void update_system_term(term_T *term) { @@ -2777,6 +2778,7 @@ update_system_term(term_T *term) term->tl_dirty_row_end = 0; update_cursor(term, TRUE); } +#endif /* * Called to update a window that contains an active terminal. |