[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.1188 and 1.1189

version 1.1188, 2022/12/26 19:16:03 version 1.1189, 2023/01/03 11:43:24
Line 1380 
Line 1380 
         u_int            osy;          u_int            osy;
   
         int              mode;          int              mode;
           int              fg;
           int              bg;
   
         u_int            rlower;          u_int            rlower;
         u_int            rupper;          u_int            rupper;
Line 1411 
Line 1413 
 #define TTY_HAVEXDA 0x200  #define TTY_HAVEXDA 0x200
 #define TTY_SYNCING 0x400  #define TTY_SYNCING 0x400
 #define TTY_HAVEDA2 0x800 /* Secondary DA. */  #define TTY_HAVEDA2 0x800 /* Secondary DA. */
   #define TTY_HAVEFG 0x1000
   #define TTY_HAVEBG 0x2000
   #define TTY_ALL_REQUEST_FLAGS \
           (TTY_HAVEDA|TTY_HAVEDA2|TTY_HAVEXDA|TTY_HAVEFG|TTY_HAVEBG)
         int              flags;          int              flags;
   
         struct tty_term *term;          struct tty_term *term;
Line 2759 
Line 2765 
 int      colour_256toRGB(int);  int      colour_256toRGB(int);
 int      colour_256to16(int);  int      colour_256to16(int);
 int      colour_byname(const char *);  int      colour_byname(const char *);
   int      colour_parseX11(const char *);
 void     colour_palette_init(struct colour_palette *);  void     colour_palette_init(struct colour_palette *);
 void     colour_palette_clear(struct colour_palette *);  void     colour_palette_clear(struct colour_palette *);
 void     colour_palette_free(struct colour_palette *);  void     colour_palette_free(struct colour_palette *);

Legend:
Removed from v.1.1188  
changed lines
  Added in v.1.1189