comparison src/edit.c @ 8090:54cfe888c627 v7.4.1339

commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 16 20:12:02 2016 +0100 patch 7.4.1339 Problem: Warnings when building the GUI with MingW. (Cesar Romani) Solution: Add type cats. (Yasuhiro Matsumoto)
author Christian Brabandt <cb@256bit.org>
date Tue, 16 Feb 2016 20:15:05 +0100
parents 94798af62c56
children 2baf64fead5e
comparison
equal deleted inserted replaced
8089:e5d330ffb650 8090:54cfe888c627
326 int startln, /* if set, insert at start of line */ 326 int startln, /* if set, insert at start of line */
327 long count) 327 long count)
328 { 328 {
329 int c = 0; 329 int c = 0;
330 char_u *ptr; 330 char_u *ptr;
331 int lastc; 331 int lastc = 0;
332 int mincol; 332 int mincol;
333 static linenr_T o_lnum = 0; 333 static linenr_T o_lnum = 0;
334 int i; 334 int i;
335 int did_backspace = TRUE; /* previous char was backspace */ 335 int did_backspace = TRUE; /* previous char was backspace */
336 #ifdef FEAT_CINDENT 336 #ifdef FEAT_CINDENT