Removing two lines of dead code.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5291 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Benno Schulenberg
2015-07-10 17:42:32 +00:00
parent 08d9f572a4
commit aff252aed6
2 changed files with 3 additions and 8 deletions

View File

@@ -587,19 +587,13 @@ filestruct *read_line(char *buf, filestruct *prevnode, bool
#endif
if (*first_line_ins) {
/* Special case: We're inserting with the cursor on the first
* line. */
/* Special case: we're inserting into the first line. */
fileptr->prev = NULL;
fileptr->next = openfile->fileage;
fileptr->lineno = 1;
if (*first_line_ins) {
*first_line_ins = FALSE;
/* If we're inserting into the first line of the file, then
* we want to make sure that our edit buffer stays on the
* first line and that fileage stays up to date. */
/* Make sure that our edit window stays on the first line. */
openfile->edittop = fileptr;
} else
openfile->filebot = fileptr;
openfile->fileage = fileptr;
} else {
assert(prevnode != NULL);