vi: comment out dead code
This commit is contained in:
parent
b69e872229
commit
2414a96faa
10
editors/vi.c
10
editors/vi.c
@ -330,16 +330,16 @@ int vi_main(int argc, char **argv)
|
|||||||
last_status_cksum = 0;
|
last_status_cksum = 0;
|
||||||
text = NULL;
|
text = NULL;
|
||||||
|
|
||||||
if (ENABLE_FEATURE_VI_READONLY && strncmp(applet_name, "view", 4) == 0) {
|
#ifdef NO_SUCH_APPLET_YET
|
||||||
|
/* If we aren't "vi", we are "view" */
|
||||||
|
if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
|
||||||
SET_READONLY_MODE(readonly_mode);
|
SET_READONLY_MODE(readonly_mode);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE | VI_ERR_METHOD;
|
vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE | VI_ERR_METHOD;
|
||||||
#if ENABLE_FEATURE_VI_YANKMARK
|
#if ENABLE_FEATURE_VI_YANKMARK
|
||||||
//for (i = 0; i < 28; i++) {
|
memset(reg, 0, sizeof(reg)); // init the yank regs
|
||||||
// reg[i] = 0;
|
|
||||||
//} // init the yank regs
|
|
||||||
memset(reg, 0, sizeof(reg));
|
|
||||||
#endif
|
#endif
|
||||||
#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
|
#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
|
||||||
modifying_cmds = (char *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[]
|
modifying_cmds = (char *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[]
|
||||||
|
Loading…
Reference in New Issue
Block a user