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

Diff for /src/usr.bin/tmux/cmd.c between version 1.151 and 1.152

version 1.151, 2019/05/25 07:29:04 version 1.152, 2019/05/25 10:44:09
Line 383 
Line 383 
 static const struct cmd_entry *  static const struct cmd_entry *
 cmd_find(const char *name, char **cause)  cmd_find(const char *name, char **cause)
 {  {
         const struct cmd_entry **loop, *entry, *found = NULL;          const struct cmd_entry  **loop, *entry, *found = NULL;
         int                      ambiguous;          int                       ambiguous;
         char                     s[BUFSIZ];          char                      s[BUFSIZ];
   
         ambiguous = 0;          ambiguous = 0;
         for (loop = cmd_table; *loop != NULL; loop++) {          for (loop = cmd_table; *loop != NULL; loop++) {

Legend:
Removed from v.1.151  
changed lines
  Added in v.1.152