1
1

tweaks: elide an unneeded variable

Этот коммит содержится в:
Benno Schulenberg 2016-10-12 19:20:39 +02:00
родитель 0a18d8912b
Коммит d9148e7b3f

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

@ -2516,8 +2516,6 @@ void do_justify(bool full_justify)
/* Splice the justify buffer back into the file, but only if we /* Splice the justify buffer back into the file, but only if we
* actually justified something. */ * actually justified something. */
if (first_par_line != NULL) { if (first_par_line != NULL) {
filestruct *top_save;
/* Partition the filestruct so that it contains only the /* Partition the filestruct so that it contains only the
* text of the justified paragraph. */ * text of the justified paragraph. */
filepart = partition_filestruct(first_par_line, 0, filepart = partition_filestruct(first_par_line, 0,
@ -2530,16 +2528,16 @@ void do_justify(bool full_justify)
openfile->fileage = jusbuffer; openfile->fileage = jusbuffer;
openfile->filebot = jusbottom; openfile->filebot = jusbottom;
top_save = openfile->fileage;
/* Unpartition the filestruct so that it contains all the /* Unpartition the filestruct so that it contains all the
* text again. Note that the justified paragraph has been * text again. Note that the justified paragraph has been
* replaced with the unjustified paragraph. */ * replaced with the unjustified paragraph. */
unpartition_filestruct(&filepart); unpartition_filestruct(&filepart);
/* Renumber, starting with the beginning line of the old /* Renumber, from the beginning of the unjustified part. */
* partition. */ renumber(jusbuffer);
renumber(top_save);
/* Mark the justify buffer as empty, as it's been swallowed. */
jusbuffer = NULL;
/* Restore the justify we just did (ungrateful user!). */ /* Restore the justify we just did (ungrateful user!). */
openfile->edittop = edittop_save; openfile->edittop = edittop_save;
@ -2553,12 +2551,9 @@ void do_justify(bool full_justify)
} }
#endif #endif
openfile->modified = modified_save; openfile->modified = modified_save;
/* Clear the justify buffer. */
jusbuffer = NULL;
if (!openfile->modified) if (!openfile->modified)
titlebar(NULL); titlebar(NULL);
refresh_needed = TRUE; refresh_needed = TRUE;
} }
} else { } else {