summaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ops.c b/src/ops.c
index 77e45de76..418c46daa 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -2674,11 +2674,7 @@ do_addsub(
firstdigit = 'a';
}
else
-#ifdef EBCDIC
- firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
-#else
firstdigit -= Prenum1;
-#endif
}
else
{
@@ -2690,11 +2686,7 @@ do_addsub(
firstdigit = 'z';
}
else
-#ifdef EBCDIC
- firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
-#else
firstdigit += Prenum1;
-#endif
}
curwin->w_cursor.col = col;
if (!did_change)