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

Diff for /src/usr.bin/tmux/key-string.c between version 1.69 and 1.70

version 1.69, 2022/02/16 18:55:05 version 1.70, 2022/11/01 09:54:13
Line 460 
Line 460 
                         strlcat(out, "I", sizeof out);                          strlcat(out, "I", sizeof out);
                 if (saved & KEYC_BUILD_MODIFIERS)                  if (saved & KEYC_BUILD_MODIFIERS)
                         strlcat(out, "B", sizeof out);                          strlcat(out, "B", sizeof out);
                   if (saved & KEYC_EXTENDED)
                           strlcat(out, "E", sizeof out);
                 strlcat(out, "]", sizeof out);                  strlcat(out, "]", sizeof out);
         }          }
         return (out);          return (out);

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70