projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a4e554
)
vi: code shrink
author
Denys Vlasenko
<vda.linux@googlemail.com>
Sat, 8 Jun 2019 10:57:07 +0000
(12:57 +0200)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Sat, 8 Jun 2019 10:57:07 +0000
(12:57 +0200)
function old new delta
colon 2852 2846 -6
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
editors/vi.c
patch
|
blob
|
history
diff --git
a/editors/vi.c
b/editors/vi.c
index 8af1ef76be4cf04cf0acf980ae1c32eb671caeca..0ea547a75d83e7a1c087bb5f2ff184b64675db98 100644
(file)
--- 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;
}