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

Diff for /src/usr.bin/tmux/tmux.h between version 1.1029 and 1.1030

version 1.1029, 2020/05/16 15:24:28 version 1.1030, 2020/05/16 15:27:08
Line 1305 
Line 1305 
         u_int            orupper;          u_int            orupper;
         u_int            orlower;          u_int            orlower;
   
         /* Pane offset. */          /* Target region (usually pane) offset and size. */
         u_int            xoff;          u_int            xoff;
         u_int            yoff;          u_int            yoff;
           u_int            sx;
           u_int            sy;
   
         /* The background colour used for clearing (erasing). */          /* The background colour used for clearing (erasing). */
         u_int            bg;          u_int            bg;
   
         /* Window offset and size. */          /* Containing region (usually window) offset and size. */
         int              bigger;          int              bigger;
         u_int            ox;          u_int            wox;
         u_int            oy;          u_int            woy;
         u_int            sx;          u_int            wsx;
         u_int            sy;          u_int            wsy;
 };  };
   
 /* Saved message entry. */  /* Saved message entry. */

Legend:
Removed from v.1.1029  
changed lines
  Added in v.1.1030