diff options
author | 2000-07-10 03:06:03 +0000 | |
---|---|---|
committer | 2000-07-10 03:06:03 +0000 | |
commit | 852c4eda9a667a259e9fed88dd1f9d35330b27e1 (patch) | |
tree | 373b6f2d9ccce83d5490347207355313f721b269 /lib/libcurses/base/lib_hline.c | |
parent | Disable ttyE0 until powerpc is updated to the latest wscons. (diff) | |
download | wireguard-openbsd-852c4eda9a667a259e9fed88dd1f9d35330b27e1.tar.xz wireguard-openbsd-852c4eda9a667a259e9fed88dd1f9d35330b27e1.zip |
ncurses 5.1
Diffstat (limited to 'lib/libcurses/base/lib_hline.c')
-rw-r--r-- | lib/libcurses/base/lib_hline.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libcurses/base/lib_hline.c b/lib/libcurses/base/lib_hline.c index 9fec35b52df..1cb06b44664 100644 --- a/lib/libcurses/base/lib_hline.c +++ b/lib/libcurses/base/lib_hline.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lib_hline.c,v 1.2 2000/06/19 03:53:42 millert Exp $ */ +/* $OpenBSD: lib_hline.c,v 1.3 2000/07/10 03:06:14 millert Exp $ */ /**************************************************************************** * Copyright (c) 1998,1999,2000 Free Software Foundation, Inc. * @@ -42,7 +42,7 @@ #include <curses.priv.h> -MODULE_ID("$From: lib_hline.c,v 1.5 2000/04/29 21:14:30 tom Exp $") +MODULE_ID("$From: lib_hline.c,v 1.6 2000/07/04 14:08:09 Philippe.Blain Exp $") int whline(WINDOW *win, chtype ch, int n) @@ -71,6 +71,8 @@ whline(WINDOW *win, chtype ch, int n) line->text[end] = ch; end--; } + + _nc_synchook(win); code = OK; } returnCode(code); |