This commit is contained in:
tg 2005-05-25 23:39:10 +00:00
parent cd54ef8f51
commit 541c0caead

26
edit.c
View File

@ -1,4 +1,4 @@
/** $MirOS: src/bin/mksh/edit.c,v 1.4 2005/05/25 23:31:05 tg Exp $ */ /** $MirOS: src/bin/mksh/edit.c,v 1.5 2005/05/25 23:39:10 tg Exp $ */
/* $OpenBSD: edit.c,v 1.29 2005/04/13 02:33:08 deraadt Exp $ */ /* $OpenBSD: edit.c,v 1.29 2005/04/13 02:33:08 deraadt Exp $ */
/* $OpenBSD: edit.h,v 1.8 2005/03/28 21:28:22 deraadt Exp $ */ /* $OpenBSD: edit.h,v 1.8 2005/03/28 21:28:22 deraadt Exp $ */
/* $OpenBSD: emacs.c,v 1.37 2005/03/30 17:16:37 deraadt Exp $ */ /* $OpenBSD: emacs.c,v 1.37 2005/03/30 17:16:37 deraadt Exp $ */
@ -10,7 +10,7 @@
#include <ctype.h> #include <ctype.h>
#include <libgen.h> #include <libgen.h>
__RCSID("$MirOS: src/bin/mksh/edit.c,v 1.4 2005/05/25 23:31:05 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/edit.c,v 1.5 2005/05/25 23:39:10 tg Exp $");
#define BEL 0x07 #define BEL 0x07
@ -100,8 +100,7 @@ check_sigwinch(void)
* see the change cause the environ doesn't change. * see the change cause the environ doesn't change.
*/ */
if (ws.ws_col) { if (ws.ws_col) {
x_cols = ws.ws_col < MIN_COLS ? MIN_COLS : x_cols = ws.ws_col < MIN_COLS ? MIN_COLS : ws.ws_col;
ws.ws_col;
if ((vp = typeset("COLUMNS", 0, 0, 0, 0))) if ((vp = typeset("COLUMNS", 0, 0, 0, 0)))
setint(vp, (long) ws.ws_col); setint(vp, (long) ws.ws_col);
@ -224,9 +223,8 @@ x_mode(bool onoff)
if (memcmp(&edchars, &oldchars, sizeof(edchars)) != 0) { if (memcmp(&edchars, &oldchars, sizeof(edchars)) != 0) {
x_emacs_keys(&edchars); x_emacs_keys(&edchars);
} }
} else { } else
tcsetattr(tty_fd, TCSADRAIN, &tty_state); tcsetattr(tty_fd, TCSADRAIN, &tty_state);
}
return prev; return prev;
} }
@ -3965,7 +3963,8 @@ vi_cmd(int argcnt, const char *cmd)
ohnum = hnum; ohnum = hnum;
} }
break; break;
case '_': { case '_':
{
int inspace; int inspace;
char *p, *sp; char *p, *sp;
@ -3999,7 +3998,8 @@ vi_cmd(int argcnt, const char *cmd)
} }
p = sp; p = sp;
} }
modified = 1; hnum = hlast; modified = 1;
hnum = hlast;
if (es->cursor != es->linelen) if (es->cursor != es->linelen)
es->cursor++; es->cursor++;
while (*p && !issp(*p)) { while (*p && !issp(*p)) {
@ -4019,7 +4019,8 @@ vi_cmd(int argcnt, const char *cmd)
} }
break; break;
case '~': { case '~':
{
char *p; char *p;
int i; int i;
@ -4028,10 +4029,12 @@ vi_cmd(int argcnt, const char *cmd)
for (i = 0; i < argcnt; i++) { for (i = 0; i < argcnt; i++) {
p = &es->cbuf[es->cursor]; p = &es->cbuf[es->cursor];
if (islower(*p)) { if (islower(*p)) {
modified = 1; hnum = hlast; modified = 1;
hnum = hlast;
*p = toupper(*p); *p = toupper(*p);
} else if (isupper(*p)) { } else if (isupper(*p)) {
modified = 1; hnum = hlast; modified = 1;
hnum = hlast;
*p = tolower(*p); *p = tolower(*p);
} }
if (es->cursor < es->linelen - 1) if (es->cursor < es->linelen - 1)
@ -4088,7 +4091,6 @@ domove(int argcnt, const char *cmd, int sub)
int ncursor = 0; int ncursor = 0;
switch (*cmd) { switch (*cmd) {
case 'b': case 'b':
if (!sub && es->cursor == 0) if (!sub && es->cursor == 0)
return -1; return -1;