1
1
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2865 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
David Lawrence Ramsey 2005-07-15 00:08:23 +00:00
родитель 0532296a10
Коммит 26ee759503

Просмотреть файл

@ -186,7 +186,7 @@ void renumber(filestruct *fileptr)
assert(fileptr != NULL && fileptr->prev != NULL);
line = (fileptr->prev == NULL) ? 1 : fileptr->prev->lineno;
line = (fileptr->prev == NULL) ? 0 : fileptr->prev->lineno;
assert(fileptr != fileptr->next);