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

fix do_indent_marked() breakage

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3454 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 6 additions and 6 deletions
+6 -6
......@@ -303,13 +303,13 @@ void do_indent_marked(ssize_t len)
if (f == openfile->current) {
openfile->current_x += line_indent_len;
openfile->mark_begin_x += line_indent_len;
}
/* If the NO_NEWLINES flag isn't set, and this is the
* magicline, add a new magicline. */
if (!ISSET(NO_NEWLINES) && openfile->current ==
openfile->filebot)
new_magicline();
/* If the NO_NEWLINES flag isn't set, and this is the
* magicline, add a new magicline. */
if (!ISSET(NO_NEWLINES) && openfile->current ==
openfile->filebot)
new_magicline();
}
}
}
......
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