Source-Changes-HG archive

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

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



details:   https://anonhg.NetBSD.org/src/rev/561de460936d
branches:  netbsd-7
changeset: 799431:561de460936d
user:      snj <snj%NetBSD.org@localhost>
date:      Wed Jun 10 16:59:32 2015 +0000

description:
Pull up following revision(s) (requested by joerg in ticket #836):
        lib/libcurses/curses.h: revision 1.107
mvgetnstr should have a length argument as the name implies.

diffstat:

 lib/libcurses/curses.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 709ad1a8ec23 -r 561de460936d lib/libcurses/curses.h
--- a/lib/libcurses/curses.h    Wed Jun 10 16:57:58 2015 +0000
+++ b/lib/libcurses/curses.h    Wed Jun 10 16:59:32 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: curses.h,v 1.106 2013/10/16 19:59:29 roy Exp $ */
+/*     $NetBSD: curses.h,v 1.106.4.1 2015/06/10 16:59:32 snj Exp $     */
 
 /*
  * Copyright (c) 1981, 1993, 1994
@@ -480,7 +480,7 @@
 #define        mvaddstr(y, x, s)               mvwaddstr(stdscr, y, x, s)
 #define        mvdelch(y, x)                   mvwdelch(stdscr, y, x)
 #define        mvgetch(y, x)                   mvwgetch(stdscr, y, x)
-#define        mvgetnstr(y, x, s)              mvwgetnstr(stdscr, y, x, s, n)
+#define        mvgetnstr(y, x, s, n)           mvwgetnstr(stdscr, y, x, s, n)
 #define        mvgetstr(y, x, s)               mvwgetstr(stdscr, y, x, s)
 #define        mvinch(y, x)                    mvwinch(stdscr, y, x)
 #define        mvinchnstr(y, x, c, n)          mvwinchnstr(stdscr, y, x, c, n)



Home | Main Index | Thread Index | Old Index