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

Diff for /src/usr.bin/tmux/arguments.c between version 1.19 and 1.20

version 1.19, 2017/05/30 21:44:59 version 1.20, 2017/08/23 09:14:21
Line 191 
Line 191 
 int  int
 args_has(struct args *args, u_char ch)  args_has(struct args *args, u_char ch)
 {  {
         return (args_find(args, ch) == NULL ? 0 : 1);          return (args_find(args, ch) != NULL);
 }  }
   
 /* Set argument value in the arguments tree. */  /* Set argument value in the arguments tree. */

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