summaryrefslogtreecommitdiff
path: root/lib/libcurses/touchwin.c
diff options
context:
space:
mode:
authorblymn <blymn@NetBSD.org>2007-05-28 15:01:53 +0000
committerblymn <blymn@NetBSD.org>2007-05-28 15:01:53 +0000
commite124de36d8a3bb2fd90b77ec25eb7736f29ee44d (patch)
tree0dac708fd51eee66b5194f8e69d6fe165e953031 /lib/libcurses/touchwin.c
parent599840187d9b53fe3353daa7f2892b387a1c2f29 (diff)
Merge in wide curses code done as a Summer of Code project by
Ruibiao Qiu.
Diffstat (limited to 'lib/libcurses/touchwin.c')
-rw-r--r--lib/libcurses/touchwin.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libcurses/touchwin.c b/lib/libcurses/touchwin.c
index 980e3aecad2..d26ddd67c89 100644
--- a/lib/libcurses/touchwin.c
+++ b/lib/libcurses/touchwin.c
@@ -1,4 +1,4 @@
-/* $NetBSD: touchwin.c,v 1.23 2007/01/21 13:25:36 jdc Exp $ */
+/* $NetBSD: touchwin.c,v 1.24 2007/05/28 15:01:58 blymn Exp $ */
/*
* Copyright (c) 1981, 1993, 1994
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)touchwin.c 8.2 (Berkeley) 5/4/94";
#else
-__RCSID("$NetBSD: touchwin.c,v 1.23 2007/01/21 13:25:36 jdc Exp $");
+__RCSID("$NetBSD: touchwin.c,v 1.24 2007/05/28 15:01:58 blymn Exp $");
#endif
#endif /* not lint */
@@ -43,7 +43,7 @@ __RCSID("$NetBSD: touchwin.c,v 1.23 2007/01/21 13:25:36 jdc Exp $");
/*
* is_linetouched --
- * Indicate if line has been touched or not.
+ * Indicate if line has been touched or not.
*/
bool
is_linetouched(WINDOW *win, int line)
@@ -83,7 +83,7 @@ int wredrawln(WINDOW *win, int start, int count)
/*
* is_wintouched --
- * Check if the window has been touched.
+ * Check if the window has been touched.
*/
bool
is_wintouched(WINDOW *win)
@@ -127,7 +127,7 @@ redrawwin(WINDOW *win)
/*
* untouchwin --
- * Make it look like the window has not been changed.
+ * Make it look like the window has not been changed.
*/
int
untouchwin(WINDOW *win)
@@ -140,8 +140,8 @@ untouchwin(WINDOW *win)
/*
* wtouchln --
- * If changed is 1 then touch n lines starting at line. If changed
- * is 0 then mark the lines as unchanged.
+ * If changed is 1 then touch n lines starting at line. If changed
+ * is 0 then mark the lines as unchanged.
*/
int
wtouchln(WINDOW *win, int line, int n, int changed)
@@ -176,7 +176,7 @@ wtouchln(WINDOW *win, int line, int n, int changed)
int
__touchwin(WINDOW *win)
{
- int y, maxy;
+ int y, maxy;
#ifdef DEBUG
__CTRACE(__CTRACE_LINE, "__touchwin: (%p)\n", win);