Commit c9e91df4 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Deleting four superfluous checks.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5464 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 8 deletions
+2 -8
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
* src/winio.c (edit_draw): Move a check to a better place. * src/winio.c (edit_draw): Move a check to a better place.
* src/winio.c (edit_draw): Rename a label and elide an 'else'. * src/winio.c (edit_draw): Rename a label and elide an 'else'.
* src/winio.c (edit_draw): Unindent after previous change. * src/winio.c (edit_draw): Unindent after previous change.
* src/color.c (reset_multis_before, reset_multis_after): Delete four
superfluous checks.
2015-11-30 Benno Schulenberg <bensberg@justemail.net> 2015-11-30 Benno Schulenberg <bensberg@justemail.net>
* src/text.c (redo_cut, update_undo): When cutting reaches the EOF, * src/text.c (redo_cut, update_undo): When cutting reaches the EOF,
......
...@@ -372,8 +372,6 @@ void reset_multis_after(filestruct *fileptr, int mindex) ...@@ -372,8 +372,6 @@ void reset_multis_after(filestruct *fileptr, int mindex)
filestruct *oof; filestruct *oof;
for (oof = fileptr->next; oof != NULL; oof = oof->next) { for (oof = fileptr->next; oof != NULL; oof = oof->next) {
alloc_multidata_if_needed(oof); alloc_multidata_if_needed(oof);
if (oof->multidata == NULL)
continue;
if (oof->multidata[mindex] != CNONE) if (oof->multidata[mindex] != CNONE)
oof->multidata[mindex] = -1; oof->multidata[mindex] = -1;
else else
...@@ -381,8 +379,6 @@ void reset_multis_after(filestruct *fileptr, int mindex) ...@@ -381,8 +379,6 @@ void reset_multis_after(filestruct *fileptr, int mindex)
} }
for (; oof != NULL; oof = oof->next) { for (; oof != NULL; oof = oof->next) {
alloc_multidata_if_needed(oof); alloc_multidata_if_needed(oof);
if (oof->multidata == NULL)
continue;
if (oof->multidata[mindex] == CNONE) if (oof->multidata[mindex] == CNONE)
oof->multidata[mindex] = -1; oof->multidata[mindex] = -1;
else else
...@@ -396,8 +392,6 @@ void reset_multis_before(filestruct *fileptr, int mindex) ...@@ -396,8 +392,6 @@ void reset_multis_before(filestruct *fileptr, int mindex)
filestruct *oof; filestruct *oof;
for (oof = fileptr->prev; oof != NULL; oof = oof->prev) { for (oof = fileptr->prev; oof != NULL; oof = oof->prev) {
alloc_multidata_if_needed(oof); alloc_multidata_if_needed(oof);
if (oof->multidata == NULL)
continue;
if (oof->multidata[mindex] != CNONE) if (oof->multidata[mindex] != CNONE)
oof->multidata[mindex] = -1; oof->multidata[mindex] = -1;
else else
...@@ -405,8 +399,6 @@ void reset_multis_before(filestruct *fileptr, int mindex) ...@@ -405,8 +399,6 @@ void reset_multis_before(filestruct *fileptr, int mindex)
} }
for (; oof != NULL; oof = oof->prev) { for (; oof != NULL; oof = oof->prev) {
alloc_multidata_if_needed(oof); alloc_multidata_if_needed(oof);
if (oof->multidata == NULL)
continue;
if (oof->multidata[mindex] == CNONE) if (oof->multidata[mindex] == CNONE)
oof->multidata[mindex] = -1; oof->multidata[mindex] = -1;
else else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment