Problem: Solaris: Test_terminal_composing_unicode() fails, because
readline echoes combining UTF-8 input as octal bytes.
Solution: Force C.UTF-8 locale for the terminal test
(Vladimír Marek).
closes: #20572
Signed-off-by: Vladimír Marek <vlmarek13@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
endif
enew
- let buf = term_start(cmd, {'curwin': 1})
+ let term_opts = {'curwin': 1}
+ if has('sun')
+ let term_opts.env = {'LC_ALL': 'C.UTF-8'}
+ endif
+ let buf = term_start(cmd, term_opts)
let g:job = term_getjob(buf)
call WaitFor({-> term_getline(buf, 1) !=# ''}, 1000)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 691,
/**/
690,
/**/