Source-Changes-HG archive

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

[src/netbsd-8]: src/lib/libcurses Pull up following revision(s) (requested by...



details:   https://anonhg.NetBSD.org/src/rev/ebc57c915018
branches:  netbsd-8
changeset: 851921:ebc57c915018
user:      martin <martin%NetBSD.org@localhost>
date:      Wed Aug 08 10:32:18 2018 +0000

description:
Pull up following revision(s) (requested by simonb in ticket #964):

        lib/libcurses/addbytes.c: revision 1.48

Avoid curx going beyond end of window when adding a wide character to the
last column.

OK @blymn.
- --

diffstat:

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

diffs (27 lines):

diff -r 1e2c4920543f -r ebc57c915018 lib/libcurses/addbytes.c
--- a/lib/libcurses/addbytes.c  Wed Aug 08 10:28:35 2018 +0000
+++ b/lib/libcurses/addbytes.c  Wed Aug 08 10:32:18 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: addbytes.c,v 1.47 2017/01/06 14:25:41 roy Exp $        */
+/*     $NetBSD: addbytes.c,v 1.47.6.1 2018/08/08 10:32:18 martin Exp $ */
 
 /*
  * Copyright (c) 1987, 1993, 1994
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)addbytes.c 8.4 (Berkeley) 5/4/94";
 #else
-__RCSID("$NetBSD: addbytes.c,v 1.47 2017/01/06 14:25:41 roy Exp $");
+__RCSID("$NetBSD: addbytes.c,v 1.47.6.1 2018/08/08 10:32:18 martin Exp $");
 #endif
 #endif                         /* not lint */
 
@@ -582,7 +582,7 @@
                if (newx > *(*lnp)->lastchp)
                        *(*lnp)->lastchp = newx;
                __touchline(win, *y, sx, (int) win->maxx - 1);
-               win->curx = sx;
+               *x = win->curx = sx;
        } else {
                win->curx = *x;
 



Home | Main Index | Thread Index | Old Index