[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.893 and 1.894

version 1.893, 2019/05/09 14:09:32 version 1.894, 2019/05/10 14:12:47
Line 748 
Line 748 
 #define screen_hsize(s) ((s)->grid->hsize)  #define screen_hsize(s) ((s)->grid->hsize)
 #define screen_hlimit(s) ((s)->grid->hlimit)  #define screen_hlimit(s) ((s)->grid->hlimit)
   
   /* Menu item. */
   struct menu_item {
           char                    *name;
           char                    *command;
           key_code                 key;
   };
   
   /* Menu. */
   struct menu {
           char                    *title;
           struct menu_item        *items;
           u_int                    count;
           u_int                    width;
   };
   
 /*  /*
  * Window mode. Windows can be in several modes and this is used to call the   * Window mode. Windows can be in several modes and this is used to call the
  * right function to handle input and output.   * right function to handle input and output.
Line 1687 
Line 1702 
 #define FORMAT_PANE 0x80000000U  #define FORMAT_PANE 0x80000000U
 #define FORMAT_WINDOW 0x40000000U  #define FORMAT_WINDOW 0x40000000U
 struct format_tree;  struct format_tree;
 const char      *format_skip(const char *s, const char *end);  const char      *format_skip(const char *, const char *);
 int              format_true(const char *);  int              format_true(const char *);
 struct format_tree *format_create(struct client *, struct cmdq_item *, int,  struct format_tree *format_create(struct client *, struct cmdq_item *, int,
                      int);                       int);
Line 2200 
Line 2215 
              u_int, u_int, u_int, u_int);               u_int, u_int, u_int, u_int);
 void     screen_write_hline(struct screen_write_ctx *, u_int, int, int);  void     screen_write_hline(struct screen_write_ctx *, u_int, int, int);
 void     screen_write_vline(struct screen_write_ctx *, u_int, int, int);  void     screen_write_vline(struct screen_write_ctx *, u_int, int, int);
   void     screen_write_menu(struct screen_write_ctx *, struct menu *, int);
 void     screen_write_box(struct screen_write_ctx *, u_int, u_int);  void     screen_write_box(struct screen_write_ctx *, u_int, u_int);
 void     screen_write_preview(struct screen_write_ctx *, struct screen *, u_int,  void     screen_write_preview(struct screen_write_ctx *, struct screen *, u_int,
              u_int);               u_int);

Legend:
Removed from v.1.893  
changed lines
  Added in v.1.894