diff options
author | ache <ache@FreeBSD.org> | 1994-10-27 22:36:56 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-27 22:36:56 +0000 |
commit | fc43e3161605eb847146163c136cbe02740aeed1 (patch) | |
tree | 89c05a1989e52e66c74f534f70ddf97999543332 /lib/libcurses/setterm.c | |
parent | 1ca2f392e18c355a8108c5c84aa5e4705aedc786 (diff) | |
download | FreeBSD-src-fc43e3161605eb847146163c136cbe02740aeed1.zip FreeBSD-src-fc43e3161605eb847146163c136cbe02740aeed1.tar.gz |
Fix scroll bug bringed by vi(1), from phk's flame
(I still wait for apologies)
Diffstat (limited to 'lib/libcurses/setterm.c')
-rw-r--r-- | lib/libcurses/setterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurses/setterm.c b/lib/libcurses/setterm.c index ab84e9d..c1da04d 100644 --- a/lib/libcurses/setterm.c +++ b/lib/libcurses/setterm.c @@ -50,8 +50,8 @@ extern short ospeed; static void zap __P((void)); static char *sflags[] = { - /* am bs da eo hc in mi ms */ - &AM, &BS, &DA, &EO, &HC, &IN, &MI, &MS, + /* am bs da db eo hc in mi ms */ + &AM, &BS, &DA, &DB, &EO, &HC, &IN, &MI, &MS, /* nc ns os ul xb xn xt xs xx */ &NC, &NS, &OS, &UL, &XB, &XN, &XT, &XS, &XX }; |