mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 01:38:16 +00:00
chdir: remove unused argument #9901
This commit is contained in:

committed by
Justin M. Keyes

parent
82d48c0dab
commit
a0da692fce
@@ -7343,7 +7343,7 @@ void ex_cd(exarg_T *eap)
|
||||
break;
|
||||
}
|
||||
|
||||
if (vim_chdir(new_dir, scope)) {
|
||||
if (vim_chdir(new_dir)) {
|
||||
EMSG(_(e_failed));
|
||||
} else {
|
||||
post_chdir(scope, true);
|
||||
|
Reference in New Issue
Block a user