diff options
author | 2000-01-24 03:12:12 +0000 | |
---|---|---|
committer | 2000-01-24 03:12:12 +0000 | |
commit | 6b26ffb8691d43faaec1bd3ca329e274a1ff8d7f (patch) | |
tree | a0d414fbea8cc619af60d2db87926bba2b986724 /bin/ksh/emacs.c | |
parent | Previous fix to allow '-' in filenames did not work as desired, (diff) | |
download | wireguard-openbsd-6b26ffb8691d43faaec1bd3ca329e274a1ff8d7f.tar.xz wireguard-openbsd-6b26ffb8691d43faaec1bd3ca329e274a1ff8d7f.zip |
Make application mode arrow keys work; fixes arrow keys on the console.
Diffstat (limited to 'bin/ksh/emacs.c')
-rw-r--r-- | bin/ksh/emacs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ksh/emacs.c b/bin/ksh/emacs.c index 44a9b5b6632..2ef3ce5732e 100644 --- a/bin/ksh/emacs.c +++ b/bin/ksh/emacs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: emacs.c,v 1.12 1999/11/14 22:04:02 d Exp $ */ +/* $OpenBSD: emacs.c,v 1.13 2000/01/24 03:12:12 millert Exp $ */ /* * Emacs-like command line editing and history @@ -318,6 +318,7 @@ static struct x_defbindings const x_defbindings[] = { * entries. */ { XFUNC_meta2, 1, '[' }, + { XFUNC_meta2, 1, 'O' }, { XFUNC_prev_com, 2, 'A' }, { XFUNC_next_com, 2, 'B' }, { XFUNC_mv_forw, 2, 'C' }, |