Patch 9.0.1297
Problem: Wrong value for $LC_CTYPE makes the environ test fail.
Solution: Unset $LC_CTYPE when running tests. (closes #11963)
Files: src/testdir/test_environ.vim
*** ../vim-9.0.1296/src/testdir/test_environ.vim 2022-04-24
11:06:02.000000000 +0100
--- src/testdir/test_environ.vim 2023-02-10 20:47:04.203463022 +0000
***************
*** 73,79 ****
" If $LANG is not set then the system locale will be used.
" Run Vim after unsetting all the locale environmental vars, and capture the
" output of :lang.
! let lang_results = system("unset LANG; unset LC_MESSAGES; " ..
\ shellescape(v:progpath) ..
\ " --clean -esX -c 'redir @a' -c 'lang' -c 'put a' -c 'print' -c
'qa!' ")
--- 73,79 ----
" If $LANG is not set then the system locale will be used.
" Run Vim after unsetting all the locale environmental vars, and capture the
" output of :lang.
! let lang_results = system("unset LANG; unset LC_MESSAGES; unset LC_CTYPE; "
..
\ shellescape(v:progpath) ..
\ " --clean -esX -c 'redir @a' -c 'lang' -c 'put a' -c 'print' -c
'qa!' ")
*** ../vim-9.0.1296/src/version.c 2023-02-10 15:52:21.654002123 +0000
--- src/version.c 2023-02-10 20:46:25.567472313 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 1297,
/**/
--
"New York, the city that never sleeps". "There is so much noise?"
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20230210205020.6BD1D1C0932%40moolenaar.net.