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

Diff for /src/usr.bin/tmux/popup.c between version 1.42 and 1.43

version 1.42, 2021/10/25 09:38:36 version 1.43, 2022/01/17 10:40:03
Line 668 
Line 668 
         pd = xcalloc(1, sizeof *pd);          pd = xcalloc(1, sizeof *pd);
         pd->item = item;          pd->item = item;
         pd->flags = flags;          pd->flags = flags;
         pd->title = xstrdup(title);          if (title != NULL)
                   pd->title = xstrdup(title);
   
         pd->c = c;          pd->c = c;
         pd->c->references++;          pd->c->references++;

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43