[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.1053 and 1.1054

version 1.1053, 2020/05/25 09:32:10 version 1.1054, 2020/05/25 15:02:25
Line 673 
Line 673 
   
 /* Grid extended cell entry. */  /* Grid extended cell entry. */
 struct grid_extd_entry {  struct grid_extd_entry {
         uint32_t                data;          u_int                   data;
         u_short                 attr;          u_short                 attr;
         u_char                  flags;          u_char                  flags;
         int                     fg;          int                     fg;
Line 2889 
Line 2889 
 void             session_renumber_windows(struct session *);  void             session_renumber_windows(struct session *);
   
 /* utf8.c */  /* utf8.c */
 uint32_t         utf8_set_big(char, u_int);  u_int            utf8_set_big(char, u_int);
 uint32_t         utf8_map_big(const struct utf8_data *);  u_int            utf8_map_big(const struct utf8_data *);
 void             utf8_get_big(uint32_t, struct utf8_data *);  void             utf8_get_big(u_int, struct utf8_data *);
 void             utf8_set(struct utf8_data *, u_char);  void             utf8_set(struct utf8_data *, u_char);
 void             utf8_copy(struct utf8_data *, const struct utf8_data *);  void             utf8_copy(struct utf8_data *, const struct utf8_data *);
 enum utf8_state  utf8_open(struct utf8_data *, u_char);  enum utf8_state  utf8_open(struct utf8_data *, u_char);

Legend:
Removed from v.1.1053  
changed lines
  Added in v.1.1054