Removing two lines of dead code.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5291 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
08d9f572a4
commit
aff252aed6
|
@ -5,6 +5,7 @@
|
||||||
* src/nano.c (do_toggle): Elide an unneeded variable.
|
* src/nano.c (do_toggle): Elide an unneeded variable.
|
||||||
* src/files.c: Unwrap some lines and rewrap some others in a more
|
* src/files.c: Unwrap some lines and rewrap some others in a more
|
||||||
congenial manner; tweak some comments and whitespace and braces.
|
congenial manner; tweak some comments and whitespace and braces.
|
||||||
|
* src/files.c (read_line): Remove two lines of dead code.
|
||||||
|
|
||||||
2015-07-06 Benno Schulenberg <bensberg@justemail.net>
|
2015-07-06 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/global.c (add_to_sclist), src/help.c (help_init), src/nano.h,
|
* src/global.c (add_to_sclist), src/help.c (help_init), src/nano.h,
|
||||||
|
|
10
src/files.c
10
src/files.c
|
@ -587,19 +587,13 @@ filestruct *read_line(char *buf, filestruct *prevnode, bool
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (*first_line_ins) {
|
if (*first_line_ins) {
|
||||||
/* Special case: We're inserting with the cursor on the first
|
/* Special case: we're inserting into the first line. */
|
||||||
* line. */
|
|
||||||
fileptr->prev = NULL;
|
fileptr->prev = NULL;
|
||||||
fileptr->next = openfile->fileage;
|
fileptr->next = openfile->fileage;
|
||||||
fileptr->lineno = 1;
|
fileptr->lineno = 1;
|
||||||
if (*first_line_ins) {
|
|
||||||
*first_line_ins = FALSE;
|
*first_line_ins = FALSE;
|
||||||
/* If we're inserting into the first line of the file, then
|
/* Make sure that our edit window stays on the first line. */
|
||||||
* we want to make sure that our edit buffer stays on the
|
|
||||||
* first line and that fileage stays up to date. */
|
|
||||||
openfile->edittop = fileptr;
|
openfile->edittop = fileptr;
|
||||||
} else
|
|
||||||
openfile->filebot = fileptr;
|
|
||||||
openfile->fileage = fileptr;
|
openfile->fileage = fileptr;
|
||||||
} else {
|
} else {
|
||||||
assert(prevnode != NULL);
|
assert(prevnode != NULL);
|
||||||
|
|
Loading…
Reference in New Issue