diff --git a/src/ChangeLog b/src/ChangeLog index bf41a446c..5849384cf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2002-10-24 Pavel Roskin + * screen.c (mini_info_separator): Revert last patch. The bug is + in Red Hat 8.0 S-Lang. + * screen.c (mini_info_separator): The separator was one character too long. (show_dir): Remove obsolete linux_unicode hack. diff --git a/src/screen.c b/src/screen.c index fe12f45b7..995daff99 100644 --- a/src/screen.c +++ b/src/screen.c @@ -686,10 +686,10 @@ mini_info_separator (WPanel *panel) widget_move (&panel->widget, llines (panel) + 2, 1); #ifdef HAVE_SLANG attrset (NORMAL_COLOR); - hline (ACS_HLINE, panel->widget.cols - 3); + hline (ACS_HLINE, panel->widget.cols - 2); #else hline ((slow_terminal ? '-' : ACS_HLINE) | NORMAL_COLOR, - panel->widget.cols - 3); + panel->widget.cols - 2); #endif /* !HAVE_SLANG */ }