[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.1023 and 1.1024

version 1.1023, 2020/05/16 14:49:50 version 1.1024, 2020/05/16 14:53:23
Line 928 
Line 928 
   
         struct input_ctx *ictx;          struct input_ctx *ictx;
   
         struct style     cached_style;          struct grid_cell cached_gc;
         struct style     cached_active_style;          struct grid_cell cached_active_gc;
         int             *palette;          int             *palette;
   
         int              pipe_fd;          int              pipe_fd;
Line 1825 
Line 1825 
 char            *format_single(struct cmdq_item *, const char *,  char            *format_single(struct cmdq_item *, const char *,
                      struct client *, struct session *, struct winlink *,                       struct client *, struct session *, struct winlink *,
                      struct window_pane *);                       struct window_pane *);
   char            *format_single_from_state(struct cmdq_item *, const char *,
                       struct client *, struct cmd_find_state *);
 char            *format_single_from_target(struct cmdq_item *, const char *);  char            *format_single_from_target(struct cmdq_item *, const char *);
   struct format_tree *format_create_defaults(struct cmdq_item *, struct client *,
                        struct session *, struct winlink *, struct window_pane *);
   struct format_tree *format_create_from_state(struct cmdq_item *,
                        struct client *, struct cmd_find_state *);
   struct format_tree *format_create_from_target(struct cmdq_item *);
 void             format_defaults(struct format_tree *, struct client *,  void             format_defaults(struct format_tree *, struct client *,
                      struct session *, struct winlink *, struct window_pane *);                       struct session *, struct winlink *, struct window_pane *);
 void             format_defaults_window(struct format_tree *, struct window *);  void             format_defaults_window(struct format_tree *, struct window *);
Line 2356 
Line 2363 
 extern const struct grid_cell grid_default_cell;  extern const struct grid_cell grid_default_cell;
 void     grid_empty_line(struct grid *, u_int, u_int);  void     grid_empty_line(struct grid *, u_int, u_int);
 int      grid_cells_equal(const struct grid_cell *, const struct grid_cell *);  int      grid_cells_equal(const struct grid_cell *, const struct grid_cell *);
   int      grid_cells_look_equal(const struct grid_cell *,
                const struct grid_cell *);
 struct grid *grid_create(u_int, u_int, u_int);  struct grid *grid_create(u_int, u_int, u_int);
 void     grid_destroy(struct grid *);  void     grid_destroy(struct grid *);
 int      grid_compare(struct grid *, struct grid *);  int      grid_compare(struct grid *, struct grid *);
Line 2811 
Line 2820 
 const char      *style_tostring(struct style *);  const char      *style_tostring(struct style *);
 void             style_apply(struct grid_cell *, struct options *,  void             style_apply(struct grid_cell *, struct options *,
                      const char *);                       const char *);
 int              style_equal(struct style *, struct style *);  
 void             style_set(struct style *, const struct grid_cell *);  void             style_set(struct style *, const struct grid_cell *);
 void             style_copy(struct style *, struct style *);  void             style_copy(struct style *, struct style *);
 int              style_is_default(struct style *);  
   
 /* spawn.c */  /* spawn.c */
 struct winlink  *spawn_window(struct spawn_context *, char **);  struct winlink  *spawn_window(struct spawn_context *, char **);

Legend:
Removed from v.1.1023  
changed lines
  Added in v.1.1024