[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.34 and 1.35

version 1.34, 2009/07/17 07:05:58 version 1.35, 2009/07/17 15:03:11
Line 835 
Line 835 
 struct cmd_ctx {  struct cmd_ctx {
         struct client  *cmdclient;          struct client  *cmdclient;
   
           /*
            * curclient is the client where this command was executed if inside
            * tmux. This is NULL if the command came from the command-line.
            *
            * cmdclient is the client which sent the MSG_COMMAND to the server, if
            * any. This is NULL unless the command came from the command-line.
            *
            * One of curclient or cmdclient is always NULL and the other not.
            */
         struct client  *curclient;          struct client  *curclient;
         struct session *cursession;          struct session *cursession;
   
         struct msg_command_data *msgdata;          struct msg_command_data *msgdata;
   
         void            (*print)(struct cmd_ctx *, const char *, ...);          void            (*print)(struct cmd_ctx *, const char *, ...);

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35