summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2002-02-21 04:14:01 +0000
committerderaadt <deraadt@openbsd.org>2002-02-21 04:14:01 +0000
commit734a9a25d4ad7395d7bba30b3343e472d3971f11 (patch)
treedeff94e8ffd6e487f0240f16eb2e37766fd7528f
parenttest ramdisk targets too (diff)
downloadwireguard-openbsd-734a9a25d4ad7395d7bba30b3343e472d3971f11.tar.xz
wireguard-openbsd-734a9a25d4ad7395d7bba30b3343e472d3971f11.zip
^Xu is also an undo char
-rw-r--r--usr.bin/mg/keymap.c6
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
},
}
};