comparison src/term.c @ 9869:989d44d35a66 v7.4.2209

commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 14 16:07:48 2016 +0200 patch 7.4.2209 Problem: Cannot map <M-">. (Stephen Riehm) Solution: Solve the memory access problem in another way. (Dominique Pelle) Allow for using <M-\"> in a string.
author Christian Brabandt <cb@256bit.org>
date Sun, 14 Aug 2016 16:15:06 +0200
parents 045937335095
children 579abc260d85
comparison
equal deleted inserted replaced
9868:f10f5819f3e6 9869:989d44d35a66
5427 continue; 5427 continue;
5428 } 5428 }
5429 } 5429 }
5430 #endif 5430 #endif
5431 5431
5432 slen = trans_special(&src, result + dlen, TRUE); 5432 slen = trans_special(&src, result + dlen, TRUE, FALSE);
5433 if (slen) 5433 if (slen)
5434 { 5434 {
5435 dlen += slen; 5435 dlen += slen;
5436 continue; 5436 continue;
5437 } 5437 }