diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-19 20:42:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-19 20:42:00 +0000 |
commit | 2f624c868b5a44e93b0e9866f57e6ff187f54f64 (patch) | |
tree | e26638c74f16c5056262715cfe09c002434d1788 /bin/ksh/emacs.c | |
parent | fc018f8ac5eb7797e4de7700a5bccce0547eb6a5 (diff) |
Updates from pdksh-unstable-5.2.13.7. Most notable change is:
trap: exit traps now executed in subshells (without explicit exit call).
See the Changelog for a full list of changes.
Diffstat (limited to 'bin/ksh/emacs.c')
-rw-r--r-- | bin/ksh/emacs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/ksh/emacs.c b/bin/ksh/emacs.c index 53ea0f332a0..a89027658ba 100644 --- a/bin/ksh/emacs.c +++ b/bin/ksh/emacs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: emacs.c,v 1.7 1999/01/10 17:55:02 millert Exp $ */ +/* $OpenBSD: emacs.c,v 1.8 1999/01/19 20:41:52 millert Exp $ */ /* * Emacs-like command line editing and history @@ -310,7 +310,7 @@ static struct x_defbindings const x_defbindings[] = { { XFUNC_mv_forw, 3, 'M' }, { XFUNC_next_com, 3, 'P' }, { XFUNC_prev_com, 3, 'H' }, -#else /* OS2 */ +#endif /* OS2 */ /* These for ansi arrow keys: arguablely shouldn't be here by * default, but its simpler/faster/smaller than using termcap * entries. @@ -320,7 +320,6 @@ static struct x_defbindings const x_defbindings[] = { { XFUNC_next_com, 2, 'B' }, { XFUNC_mv_forw, 2, 'C' }, { XFUNC_mv_back, 2, 'D' }, -#endif /* OS2 */ }; int |