summaryrefslogtreecommitdiff
path: root/usr.bin/mg
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-28 05:18:49 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-28 05:18:49 +0000
commite7b8dae0eb821ab8ed99e1b2d0400ecd9e28606b (patch)
tree931e3b7c4f6196007314acfa7ca7ffbc510501e4 /usr.bin/mg
parentaddc2e3fc16a753582603154730841748a320828 (diff)
use rescan, not NULL, since ^X-t is not a prefix
Diffstat (limited to 'usr.bin/mg')
-rw-r--r--usr.bin/mg/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/keymap.c b/usr.bin/mg/keymap.c
index 11a76dfb77f..c4825f1f055 100644
--- a/usr.bin/mg/keymap.c
+++ b/usr.bin/mg/keymap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: keymap.c,v 1.24 2002/09/26 10:12:26 deraadt Exp $ */
+/* $OpenBSD: keymap.c,v 1.25 2002/09/28 05:18:48 deraadt Exp $ */
/*
* Keyboard maps. This is character set dependent. The terminal specific
@@ -139,7 +139,7 @@ static PF cXcar[] = {
rescan, /* q */
rescan, /* r */
savebuffers, /* s */
- NULL, /* t */
+ rescan, /* t */
undo /* u */
};