[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.1042 and 1.1043

version 1.1042, 2020/05/16 16:22:01 version 1.1043, 2020/05/16 16:26:34
Line 820 
Line 820 
         int              statustop;          int              statustop;
   
         int              pane_status;          int              pane_status;
           int              pane_lines;
   
         u_int            sx;          u_int            sx;
         u_int            sy;          u_int            sy;
Line 1050 
Line 1051 
 #define PANE_STATUS_TOP 1  #define PANE_STATUS_TOP 1
 #define PANE_STATUS_BOTTOM 2  #define PANE_STATUS_BOTTOM 2
   
   /* Pane border lines option. */
   #define PANE_LINES_SINGLE 0
   #define PANE_LINES_DOUBLE 1
   #define PANE_LINES_HEAVY 2
   #define PANE_LINES_SIMPLE 3
   #define PANE_LINES_NUMBER 4
   
 /* Layout direction. */  /* Layout direction. */
 enum layout_type {  enum layout_type {
         LAYOUT_LEFTRIGHT,          LAYOUT_LEFTRIGHT,
Line 2030 
Line 2038 
 void    tty_puts(struct tty *, const char *);  void    tty_puts(struct tty *, const char *);
 void    tty_putc(struct tty *, u_char);  void    tty_putc(struct tty *, u_char);
 void    tty_putn(struct tty *, const void *, size_t, u_int);  void    tty_putn(struct tty *, const void *, size_t, u_int);
   void    tty_cell(struct tty *, const struct grid_cell *,
               const struct grid_cell *, int *);
 int     tty_init(struct tty *, struct client *, int);  int     tty_init(struct tty *, struct client *, int);
 void    tty_resize(struct tty *);  void    tty_resize(struct tty *);
 void    tty_set_size(struct tty *, u_int, u_int, u_int, u_int);  void    tty_set_size(struct tty *, u_int, u_int, u_int, u_int);
Line 2103 
Line 2113 
 /* tty-acs.c */  /* tty-acs.c */
 int              tty_acs_needed(struct tty *);  int              tty_acs_needed(struct tty *);
 const char      *tty_acs_get(struct tty *, u_char);  const char      *tty_acs_get(struct tty *, u_char);
   int              tty_acs_reverse_get(struct tty *, const char *, size_t);
   
 /* tty-keys.c */  /* tty-keys.c */
 void            tty_keys_build(struct tty *);  void            tty_keys_build(struct tty *);

Legend:
Removed from v.1.1042  
changed lines
  Added in v.1.1043