[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.1091 and 1.1092

version 1.1091, 2021/02/15 09:39:38 version 1.1092, 2021/02/17 07:18:36
Line 500 
Line 500 
         MSG_IDENTIFY_FEATURES,          MSG_IDENTIFY_FEATURES,
         MSG_IDENTIFY_STDOUT,          MSG_IDENTIFY_STDOUT,
         MSG_IDENTIFY_LONGFLAGS,          MSG_IDENTIFY_LONGFLAGS,
           MSG_IDENTIFY_TERMINFO,
   
         MSG_COMMAND = 200,          MSG_COMMAND = 200,
         MSG_DETACH,          MSG_DETACH,
Line 1603 
Line 1604 
         char            *term_name;          char            *term_name;
         int              term_features;          int              term_features;
         char            *term_type;          char            *term_type;
           char           **term_caps;
           u_int            term_ncaps;
   
         char            *ttyname;          char            *ttyname;
         struct tty       tty;          struct tty       tty;
Line 2167 
Line 2170 
 u_int            tty_term_ncodes(void);  u_int            tty_term_ncodes(void);
 void             tty_term_apply(struct tty_term *, const char *, int);  void             tty_term_apply(struct tty_term *, const char *, int);
 void             tty_term_apply_overrides(struct tty_term *);  void             tty_term_apply_overrides(struct tty_term *);
 struct tty_term *tty_term_create(struct tty *, char *, int *, int, char **);  struct tty_term *tty_term_create(struct tty *, char *, char **, u_int, int *,
                        char **);
 void             tty_term_free(struct tty_term *);  void             tty_term_free(struct tty_term *);
   int              tty_term_read_list(const char *, int, char ***, u_int *,
                        char **);
   void             tty_term_free_list(char **, u_int);
 int              tty_term_has(struct tty_term *, enum tty_code_code);  int              tty_term_has(struct tty_term *, enum tty_code_code);
 const char      *tty_term_string(struct tty_term *, enum tty_code_code);  const char      *tty_term_string(struct tty_term *, enum tty_code_code);
 const char      *tty_term_string1(struct tty_term *, enum tty_code_code, int);  const char      *tty_term_string1(struct tty_term *, enum tty_code_code, int);

Legend:
Removed from v.1.1091  
changed lines
  Added in v.1.1092