Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libedit Add missing second argument to another call of c...



details:   https://anonhg.NetBSD.org/src/rev/b916e9728964
branches:  trunk
changeset: 583365:b916e9728964
user:      tron <tron%NetBSD.org@localhost>
date:      Tue Aug 02 10:20:33 2005 +0000

description:
Add missing second argument to another call of ch_reset().

diffstat:

 lib/libedit/read.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 65ff8a4687c3 -r b916e9728964 lib/libedit/read.c
--- a/lib/libedit/read.c        Tue Aug 02 01:35:05 2005 +0000
+++ b/lib/libedit/read.c        Tue Aug 02 10:20:33 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: read.c,v 1.37 2005/08/01 23:00:15 christos Exp $       */
+/*     $NetBSD: read.c,v 1.38 2005/08/02 10:20:33 tron Exp $   */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)read.c     8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: read.c,v 1.37 2005/08/01 23:00:15 christos Exp $");
+__RCSID("$NetBSD: read.c,v 1.38 2005/08/02 10:20:33 tron Exp $");
 #endif
 #endif /* not lint && not SCCSID */
 
@@ -577,7 +577,7 @@
 #endif /* DEBUG_READ */
                        /* put (real) cursor in a known place */
                        re_clear_display(el);   /* reset the display stuff */
-                       ch_reset(el);   /* reset the input pointers */
+                       ch_reset(el, 0);        /* reset the input pointers */
                        re_refresh(el); /* print the prompt again */
                        break;
 



Home | Main Index | Thread Index | Old Index