[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.1028 and 1.1029

version 1.1028, 2020/05/16 15:16:37 version 1.1029, 2020/05/16 15:24:28
Line 1806 
Line 1806 
 void             paste_add(const char *, char *, size_t);  void             paste_add(const char *, char *, size_t);
 int              paste_rename(const char *, const char *, char **);  int              paste_rename(const char *, const char *, char **);
 int              paste_set(char *, size_t, const char *, char **);  int              paste_set(char *, size_t, const char *, char **);
   void             paste_replace(struct paste_buffer *, char *, size_t);
 char            *paste_make_sample(struct paste_buffer *);  char            *paste_make_sample(struct paste_buffer *);
   
 /* format.c */  /* format.c */
Line 2813 
Line 2814 
 #define POPUP_WRITEKEYS 0x1  #define POPUP_WRITEKEYS 0x1
 #define POPUP_CLOSEEXIT 0x2  #define POPUP_CLOSEEXIT 0x2
 #define POPUP_CLOSEEXITZERO 0x4  #define POPUP_CLOSEEXITZERO 0x4
   typedef void (*popup_close_cb)(int, void *);
 u_int            popup_width(struct cmdq_item *, u_int, const char **,  u_int            popup_width(struct cmdq_item *, u_int, const char **,
                     struct client *, struct cmd_find_state *);                      struct client *, struct cmd_find_state *);
 u_int            popup_height(u_int, const char **);  u_int            popup_height(u_int, const char **);
 int              popup_display(int, struct cmdq_item *, u_int, u_int, u_int,  int              popup_display(int, struct cmdq_item *, u_int, u_int, u_int,
                     u_int, u_int, const char **, const char *, const char *,                      u_int, u_int, const char **, const char *, const char *,
                     const char *, struct client *, struct cmd_find_state *);                      const char *, struct client *, struct cmd_find_state *,
                       popup_close_cb, void *);
   
 /* style.c */  /* style.c */
 int              style_parse(struct style *,const struct grid_cell *,  int              style_parse(struct style *,const struct grid_cell *,

Legend:
Removed from v.1.1028  
changed lines
  Added in v.1.1029