[BACK]Return to format-draw.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/format-draw.c between version 1.1 and 1.2

version 1.1, 2019/03/18 20:53:33 version 1.2, 2019/03/18 21:55:04
Line 694 
Line 694 
         }          }
         free(fr);          free(fr);
   
         for (i = 0; i < TOTAL; i++)          for (i = 0; i < TOTAL; i++) {
                   screen_write_stop(&ctx[i]);
                 log_debug("%s: width %s is %u", __func__, names[i], width[i]);                  log_debug("%s: width %s is %u", __func__, names[i], width[i]);
           }
         if (focus_start != -1 && focus_end != -1)          if (focus_start != -1 && focus_end != -1)
                 log_debug("focus is %d-%d", focus_start, focus_end);                  log_debug("focus is %d-%d", focus_start, focus_end);
         TAILQ_FOREACH(fr, &frs, entry) {          TAILQ_FOREACH(fr, &frs, entry) {
Line 747 
Line 749 
   
                 format_free_range(&frs, fr);                  format_free_range(&frs, fr);
         }          }
   
           /* Free the screens. */
           for (i = 0; i < TOTAL; i++)
                   screen_free(&s[i]);
   
         /* Restore the original cursor position. */          /* Restore the original cursor position. */
         screen_write_cursormove(octx, ocx, ocy, 0);          screen_write_cursormove(octx, ocx, ocy, 0);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2