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

Diff for /src/usr.bin/tmux/status.c between version 1.222 and 1.223

version 1.222, 2021/06/10 07:24:45 version 1.223, 2021/06/10 07:38:28
Line 1300 
Line 1300 
         return (0);          return (0);
   
 append_key:  append_key:
         if (key <= 0x1f || key >= KEYC_BASE)          if (key <= 0x1f || (key >= KEYC_BASE && key < KEYC_BASE_END))
                 return (0);                  return (0);
         if (key <= 0x7f)          if (key <= 0x7f)
                 utf8_set(&tmp, key);                  utf8_set(&tmp, key);

Legend:
Removed from v.1.222  
changed lines
  Added in v.1.223