comparison src/screen.c @ 11420:d1b6cf96882a v8.0.0594

patch 8.0.0594: build failure when windows feature is missing commit https://github.com/vim/vim/commit/66c0e70b806cd8afdc9da9ddae11945ddf29841a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 30 20:46:32 2017 +0200 patch 8.0.0594: build failure when windows feature is missing Problem: Build failure when windows feature is missing. Solution: Add #ifdef.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Apr 2017 21:00:04 +0200
parents 32aed0993813
children 80491a71c716
comparison
equal deleted inserted replaced
11419:fb4f0fc43631 11420:d1b6cf96882a
273 FOR_ALL_WINDOWS(wp) 273 FOR_ALL_WINDOWS(wp)
274 { 274 {
275 if (wp->w_buffer == buf) 275 if (wp->w_buffer == buf)
276 { 276 {
277 redraw_win_later(wp, type); 277 redraw_win_later(wp, type);
278 #ifdef FEAT_WINDOWS
278 wp->w_redr_status = TRUE; 279 wp->w_redr_status = TRUE;
280 #endif
279 } 281 }
280 } 282 }
281 } 283 }
282 284
283 /* 285 /*