[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.732 and 1.733

version 1.732, 2017/03/09 17:06:35 version 1.733, 2017/03/22 07:16:54
Line 395 
Line 395 
         TTYC_SMKX,      /* keypad_xmit, ks */          TTYC_SMKX,      /* keypad_xmit, ks */
         TTYC_SMSO,      /* enter_standout_mode, so */          TTYC_SMSO,      /* enter_standout_mode, so */
         TTYC_SMUL,      /* enter_underline_mode, us */          TTYC_SMUL,      /* enter_underline_mode, us */
           TTYC_SMXX,
         TTYC_SS,        /* set cursor style, Ss */          TTYC_SS,        /* set cursor style, Ss */
         TTYC_TC,        /* 24-bit "true" colour, Tc */          TTYC_TC,        /* 24-bit "true" colour, Tc */
         TTYC_TSL,       /* to_status_line, tsl */          TTYC_TSL,       /* to_status_line, tsl */
Line 506 
Line 507 
 #define COLOUR_FLAG_256 0x01000000  #define COLOUR_FLAG_256 0x01000000
 #define COLOUR_FLAG_RGB 0x02000000  #define COLOUR_FLAG_RGB 0x02000000
   
 /* Grid attributes. */  /* Grid attributes. Anything above 0xff is stored in an extended cell. */
 #define GRID_ATTR_BRIGHT 0x1  #define GRID_ATTR_BRIGHT 0x1
 #define GRID_ATTR_DIM 0x2  #define GRID_ATTR_DIM 0x2
 #define GRID_ATTR_UNDERSCORE 0x4  #define GRID_ATTR_UNDERSCORE 0x4
Line 515 
Line 516 
 #define GRID_ATTR_HIDDEN 0x20  #define GRID_ATTR_HIDDEN 0x20
 #define GRID_ATTR_ITALICS 0x40  #define GRID_ATTR_ITALICS 0x40
 #define GRID_ATTR_CHARSET 0x80  /* alternative character set */  #define GRID_ATTR_CHARSET 0x80  /* alternative character set */
   #define GRID_ATTR_STRIKETHROUGH 0x100
   
 /* Grid flags. */  /* Grid flags. */
 #define GRID_FLAG_FG256 0x1  #define GRID_FLAG_FG256 0x1
Line 531 
Line 533 
 /* Grid cell data. */  /* Grid cell data. */
 struct grid_cell {  struct grid_cell {
         u_char                  flags;          u_char                  flags;
         u_char                  attr;          u_short                 attr;
         int                     fg;          int                     fg;
         int                     bg;          int                     bg;
         struct utf8_data        data;          struct utf8_data        data;
Line 1909 
Line 1911 
 u_char   colour_256to16(u_char);  u_char   colour_256to16(u_char);
   
 /* attributes.c */  /* attributes.c */
 const char *attributes_tostring(u_char);  const char *attributes_tostring(int);
 int      attributes_fromstring(const char *);  int      attributes_fromstring(const char *);
   
 /* grid.c */  /* grid.c */

Legend:
Removed from v.1.732  
changed lines
  Added in v.1.733