[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.89 and 1.90

version 1.89, 2009/08/23 17:29:51 version 1.90, 2009/08/24 08:03:11
Line 990 
Line 990 
   
         struct msg_command_data *msgdata;          struct msg_command_data *msgdata;
   
           /* gcc2 doesn't understand attributes on function pointers... */
   #if defined(__GNUC__) && __GNUC__ >= 3
         void printflike2 (*print)(struct cmd_ctx *, const char *, ...);          void printflike2 (*print)(struct cmd_ctx *, const char *, ...);
         void printflike2 (*info)(struct cmd_ctx *, const char *, ...);          void printflike2 (*info)(struct cmd_ctx *, const char *, ...);
         void printflike2 (*error)(struct cmd_ctx *, const char *, ...);          void printflike2 (*error)(struct cmd_ctx *, const char *, ...);
   #else
           void (*print)(struct cmd_ctx *, const char *, ...);
           void (*info)(struct cmd_ctx *, const char *, ...);
           void (*error)(struct cmd_ctx *, const char *, ...);
   #endif
 };  };
   
 struct cmd {  struct cmd {

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90