diff src/fileio.c @ 28169:bef82285dda0 v8.2.4610

patch 8.2.4610: some conditions are always true Commit: https://github.com/vim/vim/commit/fe154990c1c57fac6d5a4b1bfb682e27adb4eb8c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 22 20:42:12 2022 +0000 patch 8.2.4610: some conditions are always true Problem: Some conditions are always true. Solution: Remove the useless conditions. (closes https://github.com/vim/vim/issues/9993)
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Mar 2022 21:45:04 +0100
parents b10e94f21344
children 0390c4848b27
line wrap: on
line diff
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -4933,7 +4933,7 @@ readdir_core(
 		break;
 	    }
 
-	    if (!ignore && checkitem != NULL)
+	    if (checkitem != NULL)
 	    {
 		int r = checkitem(context, item);