summaryrefslogtreecommitdiffstats
path: root/lib/libedit/common.c
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2007-03-11 18:30:22 +0000
committerstefanf <stefanf@FreeBSD.org>2007-03-11 18:30:22 +0000
commit11fa4c47513c298a58113f8fd2a473ec7f643254 (patch)
tree509b6d0c810b13835386c30b69cd13d7ebcd95d7 /lib/libedit/common.c
parent8355c667d5270a72a500fdd281ef01faca0fa571 (diff)
downloadFreeBSD-src-11fa4c47513c298a58113f8fd2a473ec7f643254.zip
FreeBSD-src-11fa4c47513c298a58113f8fd2a473ec7f643254.tar.gz
Merge the following changes from NetBSD:
chared.h 1.17, common.c 1.19, emacs.c 1.21, key.c 1.18, key.h 1.9, map.c 1.23, term.c 1.42, term.h 1.17, vi.c 1.25: # Print the actual eofc, instead of ^D\b\b. # Change internal character decoding to prevent buffer oveflows. key.c 1.19, key.h 1.10: # move declaration to header file. term.c 1.43: # Coverity CID 806: Prevent NULL deref term.c 1.44: # Coverity CID 1668: Plug memory leak. term.c 1.45: # Fix compilation. MFC after: 3 weeks
Diffstat (limited to 'lib/libedit/common.c')
-rw-r--r--lib/libedit/common.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/libedit/common.c b/lib/libedit/common.c
index 3259f0a..d4a9fa3 100644
--- a/lib/libedit/common.c
+++ b/lib/libedit/common.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $NetBSD: common.c,v 1.18 2005/08/08 14:05:37 christos Exp $
+ * $NetBSD: common.c,v 1.19 2006/03/06 21:11:56 christos Exp $
*/
#if !defined(lint) && !defined(SCCSID)
@@ -135,7 +135,7 @@ ed_delete_prev_word(EditLine *el, int c __unused)
*/
protected el_action_t
/*ARGSUSED*/
-ed_delete_next_char(EditLine *el, int c __unused)
+ed_delete_next_char(EditLine *el, int c)
{
#ifdef notdef /* XXX */
#define EL el->el_line
@@ -152,9 +152,8 @@ ed_delete_next_char(EditLine *el, int c __unused)
#ifdef KSHVI
return (CC_ERROR);
#else
- term_overwrite(el, STReof, 4);
- /* then do an EOF */
- term__flush();
+ /* then do an EOF */
+ term_writechar(el, c);
return (CC_EOF);
#endif
} else {
OpenPOWER on IntegriCloud