Rearranging a few lines plus some whitespace.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5292 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
родитель
aff252aed6
Коммит
5bb096d32f
@ -6,6 +6,7 @@
|
||||
* src/files.c: Unwrap some lines and rewrap some others in a more
|
||||
congenial manner; tweak some comments and whitespace and braces.
|
||||
* src/files.c (read_line): Remove two lines of dead code.
|
||||
* src/files.c (read_line): Rearrange a few lines and some whitespace.
|
||||
|
||||
2015-07-06 Benno Schulenberg <bensberg@justemail.net>
|
||||
* src/global.c (add_to_sclist), src/help.c (help_init), src/nano.h,
|
||||
|
10
src/files.c
10
src/files.c
@ -590,18 +590,18 @@ filestruct *read_line(char *buf, filestruct *prevnode, bool
|
||||
/* Special case: we're inserting into the first line. */
|
||||
fileptr->prev = NULL;
|
||||
fileptr->next = openfile->fileage;
|
||||
fileptr->lineno = 1;
|
||||
*first_line_ins = FALSE;
|
||||
/* Make sure that our edit window stays on the first line. */
|
||||
openfile->edittop = fileptr;
|
||||
openfile->fileage = fileptr;
|
||||
fileptr->lineno = 1;
|
||||
/* Make sure that our edit window stays on the first line. */
|
||||
openfile->edittop = fileptr;
|
||||
*first_line_ins = FALSE;
|
||||
} else {
|
||||
assert(prevnode != NULL);
|
||||
|
||||
prevnode->next = fileptr;
|
||||
fileptr->prev = prevnode;
|
||||
fileptr->next = NULL;
|
||||
fileptr->lineno = prevnode->lineno + 1;
|
||||
prevnode->next = fileptr;
|
||||
}
|
||||
|
||||
return fileptr;
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user