Source-Changes-HG archive

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

[src/trunk]: src/lib/libcurses Don't force the refresh, it doesn't really nee...



details:   https://anonhg.NetBSD.org/src/rev/b1fbc3a22980
branches:  trunk
changeset: 365958:b1fbc3a22980
user:      blymn <blymn%NetBSD.org@localhost>
date:      Thu May 05 22:02:17 2022 +0000

description:
Don't force the refresh, it doesn't really need it.

diffstat:

 lib/libcurses/background.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 05ecac88e9b1 -r b1fbc3a22980 lib/libcurses/background.c
--- a/lib/libcurses/background.c        Thu May 05 15:26:11 2022 +0000
+++ b/lib/libcurses/background.c        Thu May 05 22:02:17 2022 +0000
@@ -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 @@
                        }
                }
        }
-       __touchwin(win, 1);
+       __touchwin(win, 0);
 
 }
 



Home | Main Index | Thread Index | Old Index