comparison src/testdir/test_expr.vim @ 9373:b88c573d8aa4 v7.4.1968

commit https://github.com/vim/vim/commit/1d90a5a5af84250e226f8a9121e771f7b72aa894 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 1 11:59:47 2016 +0200 patch 7.4.1968 Problem: Invalid memory access with "\<C-">. Solution: Do not recognize this as a special character. (Dominique Pelle)
author Christian Brabandt <cb@256bit.org>
date Fri, 01 Jul 2016 12:00:05 +0200
parents 1b41750311b6
children beab399e3883
comparison
equal deleted inserted replaced
9372:b46e82041b5f 9373:b88c573d8aa4
99 endfunc 99 endfunc
100 100
101 func Test_set_reg_null_list() 101 func Test_set_reg_null_list()
102 call setreg('x', test_null_list()) 102 call setreg('x', test_null_list())
103 endfunc 103 endfunc
104
105 func Test_special_char()
106 " The failure is only visible using valgrind.
107 call assert_fails('echo "\<C-">')
108 endfunc