aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-10-11 21:36:52 +0200
committerGitHub <noreply@github.com>2024-10-11 21:36:52 +0200
commit555784612b2e3a34315058d3f9454283b6722b91 (patch)
tree2a1c2cb5d2d098553e28a2c90ebd5a5486ffd631 /src/nvim/ex_cmds.c
parent26e765f905cbf1df18cfc825bad9b1b982f517ea (diff)
parent486076a0e1ee3c7bb230e0f95a21607fadea96d4 (diff)
downloadrneovim-555784612b2e3a34315058d3f9454283b6722b91.tar.gz
rneovim-555784612b2e3a34315058d3f9454283b6722b91.tar.bz2
rneovim-555784612b2e3a34315058d3f9454283b6722b91.zip
Merge pull request #30766 from bfredl/filecase
fix(build): remove USE_FNAME_CASE, redundant with CASE_INSENSITIVE_FILENAME
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index a98de05815..d48d25fc22 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -2134,7 +2134,7 @@ int do_ecmd(int fnum, char *ffname, char *sfname, exarg_T *eap, linenr_T newlnum
if (sfname == NULL) {
sfname = ffname;
}
-#ifdef USE_FNAME_CASE
+#ifdef CASE_INSENSITIVE_FILENAME
if (sfname != NULL) {
path_fix_case(sfname); // set correct case for sfname
}