diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-02-20 23:37:25 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-02-20 23:37:25 +0000 |
commit | 2ef864af2aa7069d561089b33680cc1c72003d33 (patch) | |
tree | d686ad4dc7dfc7b536e10f9f6ffef4a591451205 /usr.bin/mg/keymap.c | |
parent | ec839d4221ae14c2cbfec74015cb02fe57669d35 (diff) |
bind C-_ to undo.
Diffstat (limited to 'usr.bin/mg/keymap.c')
-rw-r--r-- | usr.bin/mg/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/keymap.c b/usr.bin/mg/keymap.c index b0d8b099865..bea02d25453 100644 --- a/usr.bin/mg/keymap.c +++ b/usr.bin/mg/keymap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: keymap.c,v 1.15 2002/02/08 21:21:11 deraadt Exp $ */ +/* $OpenBSD: keymap.c,v 1.16 2002/02/20 23:37:24 art Exp $ */ /* * Keyboard maps. This is character set dependent. The terminal specific @@ -322,7 +322,7 @@ static PF fund_esc[] = { rescan, /* ^\ selfinsert is default on fundamental */ rescan, /* ^] */ rescan, /* ^^ */ - rescan, /* ^_ */ + undo, /* ^_ */ }; static PF fund_del[] = { |