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

Diff for /src/usr.bin/tmux/input.c between version 1.20 and 1.21

version 1.20, 2009/10/23 15:48:39 version 1.21, 2009/10/26 21:42:04
Line 128 
Line 128 
 void  void
 input_new_argument(struct input_ctx *ictx)  input_new_argument(struct input_ctx *ictx)
 {  {
         struct input_arg       *arg;          struct input_arg        *arg;
   
         ARRAY_EXPAND(&ictx->args, 1);          ARRAY_EXPAND(&ictx->args, 1);
   
Line 139 
Line 139 
 int  int
 input_add_argument(struct input_ctx *ictx, u_char ch)  input_add_argument(struct input_ctx *ictx, u_char ch)
 {  {
         struct input_arg       *arg;          struct input_arg        *arg;
   
         if (ARRAY_LENGTH(&ictx->args) == 0)          if (ARRAY_LENGTH(&ictx->args) == 0)
                 return (0);                  return (0);
Line 792 
Line 792 
 {  {
         struct input_sequence_entry     *entry, find;          struct input_sequence_entry     *entry, find;
         struct screen                   *s = ictx->ctx.s;          struct screen                   *s = ictx->ctx.s;
         u_int                            i;          u_int                            i;
         struct input_arg                *iarg;          struct input_arg                *iarg;
   
         log_debug2("-- sq %zu: %hhu (%c): %u [sx=%u, sy=%u, cx=%u, cy=%u, "          log_debug2("-- sq %zu: %hhu (%c): %u [sx=%u, sy=%u, cx=%u, cy=%u, "

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21