summaryrefslogtreecommitdiffstats
path: root/src/filepath.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/filepath.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/filepath.c')
-rw-r--r--src/filepath.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/filepath.c b/src/filepath.c
index add74b4707..65ea2bc6ea 100644
--- a/src/filepath.c
+++ b/src/filepath.c
@@ -2208,16 +2208,7 @@ f_tempname(typval_T *argvars UNUSED, typval_T *rettv)
else if (x == '9')
x = 'A';
else
- {
-#ifdef EBCDIC
- if (x == 'I')
- x = 'J';
- else if (x == 'R')
- x = 'S';
- else
-#endif
- ++x;
- }
+ ++x;
} while (x == 'I' || x == 'O');
}