Patch 8.2.3623

8 views
Skip to first unread message

Bram Moolenaar

unread,
Nov 19, 2021, 7:38:28 AM11/19/21
to vim...@googlegroups.com

Patch 8.2.3623
Problem: "$*" is expanded to "nonomatch".
Solution: Only add "set nonomatch" when using a csh-like shell. (Christian
Brabandt, closes #9159, closes #9153)
Files: src/os_unix.c, src/testdir/test_expand.vim


*** ../vim-8.2.3622/src/os_unix.c 2021-10-20 10:00:01.274269483 +0100
--- src/os_unix.c 2021-11-19 12:36:52.671970001 +0000
***************
*** 6691,6700 ****
}
else
{
! if (flags & EW_NOTFOUND)
! STRCPY(command, "set nonomatch; ");
! else
! STRCPY(command, "unset nonomatch; ");
if (shell_style == STYLE_GLOB)
STRCAT(command, "glob >");
else if (shell_style == STYLE_PRINT)
--- 6691,6707 ----
}
else
{
! STRCPY(command, "");
! if (shell_style == STYLE_GLOB)
! {
! // Assume the nonomatch option is valid only for csh like shells,
! // otherwise, this may set the positional parameters for the shell,
! // e.g. "$*".
! if (flags & EW_NOTFOUND)
! STRCAT(command, "set nonomatch; ");
! else
! STRCAT(command, "unset nonomatch; ");
! }
if (shell_style == STYLE_GLOB)
STRCAT(command, "glob >");
else if (shell_style == STYLE_PRINT)
*** ../vim-8.2.3622/src/testdir/test_expand.vim 2020-04-06 20:35:02.460237781 +0100
--- src/testdir/test_expand.vim 2021-11-19 12:31:51.808495472 +0000
***************
*** 1,6 ****
--- 1,7 ----
" Test for expanding file names

source shared.vim
+ source check.vim

func Test_with_directories()
call mkdir('Xdir1')
***************
*** 135,138 ****
--- 136,144 ----
%bwipe!
endfunc

+ func Test_expandcmd_shell_nonomatch()
+ CheckNotMSWindows
+ call assert_equal('$*', expandcmd('$*'))
+ endfunc
+
" vim: shiftwidth=2 sts=2 expandtab
*** ../vim-8.2.3622/src/version.c 2021-11-19 11:59:04.927685669 +0000
--- src/version.c 2021-11-19 12:34:40.220203913 +0000
***************
*** 759,760 ****
--- 759,762 ----
{ /* Add new patch number below this line */
+ /**/
+ 3623,
/**/

--
ARTHUR: Ni!
BEDEVERE: Nu!
ARTHUR: No. Ni! More like this. "Ni"!
BEDEVERE: Ni, ni, ni!
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

/// Bram Moolenaar -- Br...@Moolenaar.net -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
Reply all
Reply to author
Forward
0 new messages