comparison src/term.c @ 5743:bf1775553d3b v7.4.216

updated for version 7.4.216 Problem: Compiler warnings. (Tony Mechelynck) Solution: Initialize variables, add #ifdef.
author Bram Moolenaar <bram@vim.org>
date Tue, 25 Mar 2014 13:46:26 +0100
parents 50dbef5e774a
children 63e7cc62402d
comparison
equal deleted inserted replaced
5742:d3a535c128a9 5743:bf1775553d3b
4183 || (tp[0] == CSI && len >= 2)) 4183 || (tp[0] == CSI && len >= 2))
4184 && (VIM_ISDIGIT(*p) || *p == '>' || *p == '?')) 4184 && (VIM_ISDIGIT(*p) || *p == '>' || *p == '?'))
4185 { 4185 {
4186 #ifdef FEAT_MBYTE 4186 #ifdef FEAT_MBYTE
4187 int col; 4187 int col;
4188 int row_char; 4188 int row_char = NUL;
4189 #endif 4189 #endif
4190 j = 0; 4190 j = 0;
4191 extra = 0; 4191 extra = 0;
4192 for (i = 2 + (tp[0] != CSI); i < len 4192 for (i = 2 + (tp[0] != CSI); i < len
4193 && !(tp[i] >= '{' && tp[i] <= '~') 4193 && !(tp[i] >= '{' && tp[i] <= '~')