comparison src/screen.c @ 10988:b5de553d6062 v8.0.0383

patch 8.0.0383: misplaced #ifdef commit https://github.com/vim/vim/commit/10a8da0594406c37f8971cbd16ebbebf831dc60f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 27 21:11:35 2017 +0100 patch 8.0.0383: misplaced #ifdef Problem: Misplaced #ifdef. (Christ van Willigen) Solution: Split assignment.
author Christian Brabandt <cb@256bit.org>
date Mon, 27 Feb 2017 21:15:05 +0100
parents 62bcadce6c82
children c004e17fa36b
comparison
equal deleted inserted replaced
10987:ea02bcfb3f75 10988:b5de553d6062
4199 p_extra_free = NULL; 4199 p_extra_free = NULL;
4200 } 4200 }
4201 /* 4201 /*
4202 * Get a character from the line itself. 4202 * Get a character from the line itself.
4203 */ 4203 */
4204 c = *ptr;
4204 #ifdef FEAT_LINEBREAK 4205 #ifdef FEAT_LINEBREAK
4205 c0 = c = *ptr; 4206 c0 = *ptr;
4206 #endif 4207 #endif
4207 #ifdef FEAT_MBYTE 4208 #ifdef FEAT_MBYTE
4208 if (has_mbyte) 4209 if (has_mbyte)
4209 { 4210 {
4210 mb_c = c; 4211 mb_c = c;