Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libcurses Make comments match reality (delete-char inste...
details: https://anonhg.NetBSD.org/src/rev/3d7ae3282a18
branches: trunk
changeset: 508821:3d7ae3282a18
user: jdc <jdc%NetBSD.org@localhost>
date: Fri Apr 20 12:57:47 2001 +0000
description:
Make comments match reality (delete-char instead of insert-char).
diffstat:
lib/libcurses/delch.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (54 lines):
diff -r 996c9764c897 -r 3d7ae3282a18 lib/libcurses/delch.c
--- a/lib/libcurses/delch.c Fri Apr 20 12:56:08 2001 +0000
+++ b/lib/libcurses/delch.c Fri Apr 20 12:57:47 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: delch.c,v 1.14 2000/05/20 15:12:15 mycroft Exp $ */
+/* $NetBSD: delch.c,v 1.15 2001/04/20 12:57:47 jdc Exp $ */
/*
* Copyright (c) 1981, 1993, 1994
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)delch.c 8.2 (Berkeley) 5/4/94";
#else
-__RCSID("$NetBSD: delch.c,v 1.14 2000/05/20 15:12:15 mycroft Exp $");
+__RCSID("$NetBSD: delch.c,v 1.15 2001/04/20 12:57:47 jdc Exp $");
#endif
#endif /* not lint */
@@ -50,7 +50,7 @@
#ifndef _CURSES_USE_MACROS
/*
* delch --
- * Do an insert-char on the line, leaving (cury, curx) unchanged.
+ * Do an delete-char on the line, leaving (cury, curx) unchanged.
*/
int
delch(void)
@@ -60,7 +60,7 @@
/*
* mvdelch --
- * Do an insert-char on the line at (y, x) on stdscr.
+ * Do an delete-char on the line at (y, x) on stdscr.
*/
int
mvdelch(int y, int x)
@@ -70,7 +70,7 @@
/*
* mvwdelch --
- * Do an insert-char on the line at (y, x) of the given window.
+ * Do an delete-char on the line at (y, x) of the given window.
*/
int
mvwdelch(WINDOW *win, int y, int x)
@@ -85,7 +85,7 @@
/*
* wdelch --
- * Do an insert-char on the line, leaving (cury, curx) unchanged.
+ * Do an delete-char on the line, leaving (cury, curx) unchanged.
*/
int
wdelch(WINDOW *win)
Home |
Main Index |
Thread Index |
Old Index