summaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-31 14:59:41 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-31 14:59:41 +0000
commit424bcae1fb0f69e0aef5e0cf84fd771cf34a0fb7 (patch)
tree2841d6e3702a563627a400fa10a284b73a817436 /src/eval.c
parenteb6c2765959c91ddbb527f96f91ba5be199b8d41 (diff)
patch 8.2.4273: the EBCDIC support is outdatedv8.2.4273
Problem: The EBCDIC support is outdated. Solution: Remove the EBCDIC support.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/eval.c b/src/eval.c
index c2357884af..076ba1fed3 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -111,13 +111,6 @@ eval_init(void)
{
evalvars_init();
func_init();
-
-#ifdef EBCDIC
- /*
- * Sort the function table, to enable binary search.
- */
- sortFunctions();
-#endif
}
#if defined(EXITFREE) || defined(PROTO)