patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version
Problem: No good reason why the "gf" command is not in the tiny version.
Solution: Graduate the file_in_path feature.
diff --git a/src/alloc.c b/src/alloc.c
index 7ca20c7..932d67a 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -158,10 +158,10 @@
void *
alloc_id(size_t size, alloc_id_T id UNUSED)
{
-#ifdef FEAT_EVAL
+# ifdef FEAT_EVAL
if (alloc_fail_id == id && alloc_does_fail(size))
return NULL;
-#endif
+# endif
return lalloc(size, TRUE);
}
#endif
@@ -425,9 +425,7 @@
}
free_titles();
-# if defined(FEAT_SEARCHPATH)
free_findfile();
-# endif
// Obviously named calls.
free_all_autocmds();