summaryrefslogtreecommitdiff
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 5a80a07c2..3e40669e3 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8753,8 +8753,8 @@ ex_mkrc(eap)
else if (*dirnow != NUL
&& (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
{
- (void)mch_chdir((char *)globaldir);
- shorten_fnames(TRUE);
+ if (mch_chdir((char *)globaldir) == OK)
+ shorten_fnames(TRUE);
}
failed |= (makeopens(fd, dirnow) == FAIL);