diff options
author | 2002-02-21 04:14:01 +0000 | |
---|---|---|
committer | 2002-02-21 04:14:01 +0000 | |
commit | 734a9a25d4ad7395d7bba30b3343e472d3971f11 (patch) | |
tree | deff94e8ffd6e487f0240f16eb2e37766fd7528f | |
parent | test ramdisk targets too (diff) | |
download | wireguard-openbsd-734a9a25d4ad7395d7bba30b3343e472d3971f11.tar.xz wireguard-openbsd-734a9a25d4ad7395d7bba30b3343e472d3971f11.zip |
^Xu is also an undo char
-rw-r--r-- | usr.bin/mg/keymap.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/mg/keymap.c b/usr.bin/mg/keymap.c index bea02d25453..52367f6ce5b 100644 --- a/usr.bin/mg/keymap.c +++ b/usr.bin/mg/keymap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: keymap.c,v 1.16 2002/02/20 23:37:24 art Exp $ */ +/* $OpenBSD: keymap.c,v 1.17 2002/02/21 04:14:01 deraadt Exp $ */ /* * Keyboard maps. This is character set dependent. The terminal specific @@ -139,6 +139,8 @@ static PF cXcar[] = { rescan, /* q */ rescan, /* r */ savebuffers, /* s */ + NULL, /* t */ + undo, /* u */ }; #ifndef NO_MACRO @@ -170,7 +172,7 @@ static struct KEYMAPE (5 + IMAPEXT) cXmap = { '=', '=', cXeq, NULL }, { - '^', 's', cXcar, NULL + '^', 'u', cXcar, NULL }, } }; |