diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-07-10 03:06:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-07-10 03:06:18 +0000 |
commit | e3af44217703da8d3b5b2bc031f1913662972a8d (patch) | |
tree | 5a888b365a116d370ceac659b8d7a0aa78e80371 /lib/libcurses/base/lib_hline.c | |
parent | ed520f375deddce4d44f12f3a1999d4ce9abddb6 (diff) |
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); |