comparison src/screen.c @ 18076:d7f08b7bc203 v8.1.2033

patch 8.1.2033: cannot build with tiny features Commit: https://github.com/vim/vim/commit/0571f3d6f92a7dab9c1e39acb40c2f8885887b28 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 14 22:33:47 2019 +0200 patch 8.1.2033: cannot build with tiny features Problem: Cannot build with tiny features. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Sep 2019 22:45:03 +0200
parents 5f1554b2587c
children 687d08fee911
comparison
equal deleted inserted replaced
18075:c144bdfaf26c 18076:d7f08b7bc203
5381 /* Don't override visual selection highlighting. */ 5381 /* Don't override visual selection highlighting. */
5382 if (n_attr > 0 5382 if (n_attr > 0
5383 && draw_state == WL_LINE 5383 && draw_state == WL_LINE
5384 && !attr_pri) 5384 && !attr_pri)
5385 { 5385 {
5386 #ifdef LINE_ATTR
5386 if (line_attr) 5387 if (line_attr)
5387 char_attr = hl_combine_attr(extra_attr, line_attr); 5388 char_attr = hl_combine_attr(extra_attr, line_attr);
5388 else 5389 else
5390 #endif
5389 char_attr = extra_attr; 5391 char_attr = extra_attr;
5390 } 5392 }
5391 5393
5392 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) 5394 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5393 /* XIM don't send preedit_start and preedit_end, but they send 5395 /* XIM don't send preedit_start and preedit_end, but they send