Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/lib/libcurses Pull up following revision(s) (requested by...
details: https://anonhg.NetBSD.org/src/rev/032f69e5d042
branches: netbsd-6
changeset: 776974:032f69e5d042
user: snj <snj%NetBSD.org@localhost>
date: Fri Jun 19 17:16:11 2015 +0000
description:
Pull up following revision(s) (requested by joerg in ticket #1307):
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 bd4e90f07447 -r 032f69e5d042 lib/libcurses/curses.h
--- a/lib/libcurses/curses.h Wed May 27 05:56:27 2015 +0000
+++ b/lib/libcurses/curses.h Fri Jun 19 17:16:11 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: curses.h,v 1.103 2011/10/04 11:01:13 roy Exp $ */
+/* $NetBSD: curses.h,v 1.103.4.1 2015/06/19 17:16:11 snj Exp $ */
/*
* Copyright (c) 1981, 1993, 1994
@@ -478,7 +478,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