Module Name: src
Committed By: blymn
Date: Thu May 5 22:02:17 UTC 2022
Modified Files:
src/lib/libcurses: background.c
Log Message:
Don't force the refresh, it doesn't really need it.
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/lib/libcurses/background.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libcurses/background.c
diff -u src/lib/libcurses/background.c:1.31 src/lib/libcurses/background.c:1.32
--- src/lib/libcurses/background.c:1.31 Tue May 3 07:25:34 2022
+++ src/lib/libcurses/background.c Thu May 5 22:02:17 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: background.c,v 1.31 2022/05/03 07:25:34 blymn Exp $ */
+/* $NetBSD: background.c,v 1.32 2022/05/05 22:02:17 blymn Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: background.c,v 1.31 2022/05/03 07:25:34 blymn Exp $");
+__RCSID("$NetBSD: background.c,v 1.32 2022/05/05 22:02:17 blymn Exp $");
#endif /* not lint */
#include <stdlib.h>
@@ -245,7 +245,7 @@ wbkgrndset(WINDOW *win, const cchar_t *w
}
}
}
- __touchwin(win, 1);
+ __touchwin(win, 0);
}