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

Diff for /src/usr.bin/tmux/tty-keys.c between version 1.171 and 1.172

version 1.171, 2023/09/08 06:52:31 version 1.172, 2023/09/08 07:05:06
Line 1399 
Line 1399 
                         break;                          break;
         }          }
   
         /* Add terminal features. */          /*
            * Add terminal features. We add DECSLRM and DECFRA for some
            * identification codes here, notably 64 will catch VT520, even though
            * we can't use level 5 from DA because of VTE.
            */
         switch (p[0]) {          switch (p[0]) {
           case 41: /* VT420 */
           case 61: /* VT510 */
           case 64: /* VT520 */
                   tty_add_features(features, "margins,rectfill", ",");
                   break;
         case 'M': /* mintty */          case 'M': /* mintty */
                 tty_default_features(features, "mintty", 0);                  tty_default_features(features, "mintty", 0);
                 break;                  break;

Legend:
Removed from v.1.171  
changed lines
  Added in v.1.172