diff options
author | 2002-03-01 19:05:40 +0000 | |
---|---|---|
committer | 2002-03-01 19:05:40 +0000 | |
commit | 76c3b8e6b0cea1ffb3e7f2c7fff9bb85fa5acbcf (patch) | |
tree | 4bb586ca328985b758f92c48409f69fcb3ff04f8 | |
parent | Update to reflect recent changes in DH group handling. Remove BUGS (diff) | |
download | wireguard-openbsd-76c3b8e6b0cea1ffb3e7f2c7fff9bb85fa5acbcf.tar.xz wireguard-openbsd-76c3b8e6b0cea1ffb3e7f2c7fff9bb85fa5acbcf.zip |
disable undo until it is fixed to be (1) correct and (2) not crash like it does now
-rw-r--r-- | usr.bin/mg/keymap.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/mg/keymap.c b/usr.bin/mg/keymap.c index 52367f6ce5b..5dcb0f5c0f9 100644 --- a/usr.bin/mg/keymap.c +++ b/usr.bin/mg/keymap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: keymap.c,v 1.17 2002/02/21 04:14:01 deraadt Exp $ */ +/* $OpenBSD: keymap.c,v 1.18 2002/03/01 19:05:40 deraadt Exp $ */ /* * Keyboard maps. This is character set dependent. The terminal specific @@ -139,8 +139,6 @@ static PF cXcar[] = { rescan, /* q */ rescan, /* r */ savebuffers, /* s */ - NULL, /* t */ - undo, /* u */ }; #ifndef NO_MACRO @@ -172,7 +170,7 @@ static struct KEYMAPE (5 + IMAPEXT) cXmap = { '=', '=', cXeq, NULL }, { - '^', 'u', cXcar, NULL + '^', 's', cXcar, NULL }, } }; @@ -324,7 +322,7 @@ static PF fund_esc[] = { rescan, /* ^\ selfinsert is default on fundamental */ rescan, /* ^] */ rescan, /* ^^ */ - undo, /* ^_ */ + rescan, /* ^_ */ }; static PF fund_del[] = { |