Commit c4c45aa5 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

make do_statusbar_cut_text() respect the CUT_TO_END flag

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2266 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 8 additions and 3 deletions
+8 -3
......@@ -1875,9 +1875,14 @@ void do_statusbar_delete(void)
void do_statusbar_cut_text(void)
{
null_at(&answer, 0);
statusbar_x = 0;
statusbar_xend = 0;
if (ISSET(CUT_TO_END)) {
null_at(&answer, statusbar_x);
statusbar_xend = statusbar_x;
} else {
null_at(&answer, 0);
statusbar_x = 0;
statusbar_xend = 0;
}
}
void do_statusbar_verbatim_input(bool *got_enter)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment