View | Details | Raw Unified | Return to bug 211682 | Differences between
and this patch

Collapse All | Expand All

(-)machmgr.c (+8 lines)
Lines 263-265 Link Here
263
      if (!machs[i]->alive) machmgr_delete(i);
263
      if (!machs[i]->alive) machmgr_delete(i);
264
}
264
}
265
265
266
void machmgr_toggle_tag_all(bool ignore_dead) {
267
   int i;
268
   for (i = 0; i < machcount; i++) {
269
      if (!ignore_dead || machs[i]->alive)
270
	 machs[i]->tag = !machs[i]->tag;
271
   }
272
}
273

Return to bug 211682