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

Diff for /src/usr.bin/tmux/cmd-resize-window.c between version 1.7 and 1.8

version 1.7, 2021/08/21 10:22:39 version 1.8, 2021/08/21 10:28:05
Line 59 
Line 59 
         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.7  
changed lines
  Added in v.1.8