aboutsummaryrefslogtreecommitdiff
path: root/editors/vi.c
diff options
context:
space:
mode:
Diffstat (limited to 'editors/vi.c')
-rw-r--r--editors/vi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vi.c b/editors/vi.c
index 8af1ef76b..0ea547a75 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -1331,7 +1331,7 @@ static char what_reg(void)
char c;
c = 'D'; // default to D-reg
- if (0 <= YDreg && YDreg <= 25)
+ if (YDreg <= 25)
c = 'a' + (char) YDreg;
if (YDreg == 26)
c = 'D';
@@ -2550,7 +2550,7 @@ static void colon(char *buf)
free(reg[Ureg]); // free orig line reg- for 'U'
reg[Ureg] = NULL;
}
- if (YDreg >= 0 && YDreg < 28) {
+ /*if (YDreg < 28) - always true*/ {
free(reg[YDreg]); // free default yank/delete register
reg[YDreg] = NULL;
}