[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.1017 and 1.1018

version 1.1017, 2020/05/16 14:22:51 version 1.1018, 2020/05/16 14:26:33
Line 63 
Line 63 
 /* Client-server protocol version. */  /* Client-server protocol version. */
 #define PROTOCOL_VERSION 8  #define PROTOCOL_VERSION 8
   
 /* Default configuration files. */  /* Default configuration files and socket paths. */
 #ifndef TMUX_CONF  #ifndef TMUX_CONF
 #define TMUX_CONF "/etc/tmux.conf:~/.tmux.conf"  #define TMUX_CONF "/etc/tmux.conf:~/.tmux.conf"
 #endif  #endif
   #ifndef TMUX_SOCK
   #define TMUX_SOCK "$TMUX_TMPDIR:" _PATH_TMP
   #endif
   
 /* Minimum layout cell size, NOT including border lines. */  /* Minimum layout cell size, NOT including border lines. */
 #define PANE_MINIMUM 1  #define PANE_MINIMUM 1
Line 1746 
Line 1749 
 const char      *find_cwd(void);  const char      *find_cwd(void);
 const char      *find_home(void);  const char      *find_home(void);
 const char      *getversion(void);  const char      *getversion(void);
   void             expand_paths(const char *, char ***, u_int *);
   
   
 /* proc.c */  /* proc.c */
 struct imsg;  struct imsg;

Legend:
Removed from v.1.1017  
changed lines
  Added in v.1.1018