summaryrefslogtreecommitdiff
path: root/bin/ksh
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2003-08-26 17:55:02 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2003-08-26 17:55:02 +0000
commit321c5db5387746f549a9a6948c1809b3f7877841 (patch)
tree88928947e647eedeb0edcb7f215de2e346de7ae7 /bin/ksh
parenta90a64862f1c21463dbe6e195f385b3525b685ed (diff)
fix backward and forward delete; from wiz@netbsd.org. many thanks.
Diffstat (limited to 'bin/ksh')
-rw-r--r--bin/ksh/emacs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ksh/emacs.c b/bin/ksh/emacs.c
index 8ad90db10a6..6eee5626e86 100644
--- a/bin/ksh/emacs.c
+++ b/bin/ksh/emacs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: emacs.c,v 1.23 2003/08/23 02:30:59 fgsch Exp $ */
+/* $OpenBSD: emacs.c,v 1.24 2003/08/26 17:55:01 fgsch Exp $ */
/*
* Emacs-like command line editing and history
@@ -595,7 +595,7 @@ static int
x_del_bword(c)
int c;
{
- x_delete(x_bword(), FALSE);
+ x_delete(x_bword(), TRUE);
return KSTD;
}
@@ -619,7 +619,7 @@ static int
x_del_fword(c)
int c;
{
- x_delete(x_fword(), FALSE);
+ x_delete(x_fword(), TRUE);
return KSTD;
}