[BACK]Return to key-bindings.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/key-bindings.c between version 1.32 and 1.33

version 1.32, 2012/07/08 16:04:38 version 1.33, 2012/07/10 11:53:01
Line 90 
Line 90 
                 bd = RB_ROOT(&dead_key_bindings);                  bd = RB_ROOT(&dead_key_bindings);
                 RB_REMOVE(key_bindings, &dead_key_bindings, bd);                  RB_REMOVE(key_bindings, &dead_key_bindings, bd);
                 cmd_list_free(bd->cmdlist);                  cmd_list_free(bd->cmdlist);
                 xfree(bd);                  free(bd);
         }          }
 }  }
   
Line 216 
Line 216 
   
         *msg = toupper((u_char) *msg);          *msg = toupper((u_char) *msg);
         status_message_set(ctx->curclient, "%s", msg);          status_message_set(ctx->curclient, "%s", msg);
         xfree(msg);          free(msg);
 }  }
   
 void printflike2  void printflike2
Line 258 
Line 258 
   
         *msg = toupper((u_char) *msg);          *msg = toupper((u_char) *msg);
         status_message_set(ctx->curclient, "%s", msg);          status_message_set(ctx->curclient, "%s", msg);
         xfree(msg);          free(msg);
 }  }
   
 void  void

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33