comparison src/screen.c @ 1821:9913ff570616 v7.2.119

updated for version 7.2-119
author vimboss
date Sun, 22 Feb 2009 00:14:58 +0000
parents 15130d4dfea1
children 3af28ecf9e56
comparison
equal deleted inserted replaced
1820:484987f8e04c 1821:9913ff570616
6360 && ScreenLines[off + 1] != (enc_dbcs ? ptr[1] : 0)) 6360 && ScreenLines[off + 1] != (enc_dbcs ? ptr[1] : 0))
6361 || (enc_dbcs == DBCS_JPNU 6361 || (enc_dbcs == DBCS_JPNU
6362 && c == 0x8e 6362 && c == 0x8e
6363 && ScreenLines2[off] != ptr[1]) 6363 && ScreenLines2[off] != ptr[1])
6364 || (enc_utf8 6364 || (enc_utf8
6365 && (ScreenLinesUC[off] != (u8char_T)u8c 6365 && (ScreenLinesUC[off] != (u8char_T)(c >= 0x80 ? u8c : 0)
6366 || screen_comp_differs(off, u8cc))) 6366 || screen_comp_differs(off, u8cc)))
6367 #endif 6367 #endif
6368 || ScreenAttrs[off] != attr 6368 || ScreenAttrs[off] != attr
6369 || exmode_active 6369 || exmode_active
6370 ) 6370 )