summaryrefslogtreecommitdiffstats
path: root/src/mark.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/mark.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/mark.c')
-rw-r--r--src/mark.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mark.c b/src/mark.c
index 4765b79c17..11f20a61a9 100644
--- a/src/mark.c
+++ b/src/mark.c
@@ -310,12 +310,9 @@ getmark_buf_fnum(
// to crash.
if (c < 0)
return posp;
-#ifndef EBCDIC
if (c > '~') // check for islower()/isupper()
;
- else
-#endif
- if (c == '\'' || c == '`') // previous context mark
+ else if (c == '\'' || c == '`') // previous context mark
{
pos_copy = curwin->w_pcmark; // need to make a copy because
posp = &pos_copy; // w_pcmark may be changed soon