nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 2e8fac6487ac3a686b4180cc4be7f1028a4d3efe
parent 5c819b53e1f8f3ecd5fc1038e467428eb3353060
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sat, 29 Apr 2006 15:44:58 +0000

fix more do_indent_marked() breakage


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3456 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/text.c | 17+++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/src/text.c b/src/text.c @@ -278,12 +278,13 @@ void do_indent_marked(ssize_t len) null_at(&f->data, line_len - indent_len + 1); openfile->totsize -= indent_len; - /* If this is the current line, keep track of the change - * in it. */ - if (f == openfile->current) { + /* Keep track of the change in the current line. */ + if (f == openfile->current) openfile->current_x -= indent_len; + + if (f == openfile->mark_begin && + openfile->mark_begin_x >= indent_len) openfile->mark_begin_x -= indent_len; - } /* We've unindented, so set indent_changed to TRUE. */ if (!indent_changed) @@ -298,12 +299,12 @@ void do_indent_marked(ssize_t len) strncpy(f->data, line_indent, line_indent_len); openfile->totsize += line_indent_len; - /* If this is the current line, keep track of the change in - * it. */ - if (f == openfile->current) { + /* Keep track of the change in the current line. */ + if (f == openfile->current) openfile->current_x += line_indent_len; + + if (f == openfile->mark_begin) openfile->mark_begin_x += line_indent_len; - } /* If the NO_NEWLINES flag isn't set, and this is the * magicline, add a new magicline. */