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/7a452a3d3569
branches: netbsd-8
changeset: 435185:7a452a3d3569
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 70594e4c066d -r 7a452a3d3569 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;
- Prev by Date:
[src/netbsd-8]: src/doc Tickets #950, #956, #958, #959, #960, #961, #962
- Next by Date:
[src/netbsd-8]: src/sys/dev/usb Pull up following revision(s) (requested by r...
- Previous by Thread:
[src/netbsd-8]: src/doc Tickets #950, #956, #958, #959, #960, #961, #962
- Next by Thread:
[src/netbsd-8]: src/sys/dev/usb Pull up following revision(s) (requested by r...
- Indexes:
Home |
Main Index |
Thread Index |
Old Index