summaryrefslogtreecommitdiff
path: root/src/strings.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/strings.c
parenteb6c2765959c91ddbb527f96f91ba5be199b8d41 (diff)
downloadvim-git-424bcae1fb0f69e0aef5e0cf84fd771cf34a0fb7.tar.gz
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/strings.c')
-rw-r--r--src/strings.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/strings.c b/src/strings.c
index f6affd6fe..7a99cd964 100644
--- a/src/strings.c
+++ b/src/strings.c
@@ -342,11 +342,7 @@ vim_strup(
{
p2 = p;
while ((c = *p2) != NUL)
-#ifdef EBCDIC
- *p2++ = isalpha(c) ? toupper(c) : c;
-#else
*p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
-#endif
}
}