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

Diff for /src/usr.bin/tmux/cmd-resize-pane.c between version 1.50 and 1.51

version 1.50, 2021/08/21 10:22:39 version 1.51, 2021/08/21 10:28:05
Line 98 
Line 98 
         if (args_count(args) == 0)          if (args_count(args) == 0)
                 adjust = 1;                  adjust = 1;
         else {          else {
                 adjust = strtonum(args_string(args, 0), 1, INT_MAX,                  adjust = strtonum(args_string(args, 0), 1, INT_MAX, &errstr);
                     &errstr);  
                 if (errstr != NULL) {                  if (errstr != NULL) {
                         cmdq_error(item, "adjustment %s", errstr);                          cmdq_error(item, "adjustment %s", errstr);
                         return (CMD_RETURN_ERROR);                          return (CMD_RETURN_ERROR);

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51