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

still more cosmetic fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4155 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
......@@ -876,13 +876,13 @@ void do_insertfile(
edittop_save = openfile->fileage;
/* Update the current x-coordinate to account for the
* number of characters inserted on the current line. */
* number of characters inserted on the current line.
* If the mark begins inside the partition, adjust the
* mark coordinates to compensate for the change in the
* current line. */
openfile->current_x = strlen(openfile->filebot->data);
if (openfile->fileage == openfile->filebot) {
#ifndef NANO_TINY
/* If the mark begins inside the partition, adjust
* the mark coordinates to compensate for the change
* in the current line. */
if (openfile->mark_set) {
openfile->mark_begin = openfile->current;
if (do_mark_shift)
......
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