From 71afbfe6cd697de30a9e0d57e5a6434cf4bb0f13 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 19 Mar 2013 16:49:16 +0100 Subject: updated for version 7.3.872 Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'. --- src/buffer.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/buffer.c') diff --git a/src/buffer.c b/src/buffer.c index 5c63899c83..2a9fe4d123 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -2401,12 +2401,7 @@ fname_match(prog, name) if (name != NULL) { regmatch.regprog = prog; -#ifdef CASE_INSENSITIVE_FILENAME - regmatch.rm_ic = TRUE; /* Always ignore case */ -#else - regmatch.rm_ic = FALSE; /* Never ignore case */ -#endif - + regmatch.rm_ic = p_fic; /* ignore case when 'fileignorecase' is set */ if (vim_regexec(®match, name, (colnr_T)0)) match = name; else -- cgit v1.2.3