comparison src/ex_getln.c @ 11613:7428a08c2f68 v8.0.0689

patch 8.0.0689: ~ character not escaped when extending search pattern commit https://github.com/vim/vim/commit/a693d0584b9a7ccce98813dda3a6badb209904c7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 29 22:23:06 2017 +0200 patch 8.0.0689: ~ character not escaped when extending search pattern Problem: The ~ character is not escaped when adding to the search pattern with CTRL-L. (Ramel Eshed) Solution: Escape the character. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Thu, 29 Jun 2017 22:30:03 +0200
parents 39787def24bb
children 80af4916eadc
comparison
equal deleted inserted replaced
11612:8254ce2f2653 11613:7428a08c2f68
1490 && !pat_has_uppercase(ccline.cmdbuff)) 1490 && !pat_has_uppercase(ccline.cmdbuff))
1491 c = MB_TOLOWER(c); 1491 c = MB_TOLOWER(c);
1492 if (c != NUL) 1492 if (c != NUL)
1493 { 1493 {
1494 if (c == firstc || vim_strchr((char_u *)( 1494 if (c == firstc || vim_strchr((char_u *)(
1495 p_magic ? "\\^$.*[" : "\\^$"), c) 1495 p_magic ? "\\~^$.*[" : "\\^$"), c)
1496 != NULL) 1496 != NULL)
1497 { 1497 {
1498 /* put a backslash before special 1498 /* put a backslash before special
1499 * characters */ 1499 * characters */
1500 stuffcharReadbuff(c); 1500 stuffcharReadbuff(c);