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

Diff for /src/usr.bin/tmux/tty-features.c between version 1.26 and 1.27

version 1.26, 2022/08/15 08:41:13 version 1.27, 2022/11/11 08:37:55
Line 335 
Line 335 
         0          0
 };  };
   
   /* Terminal has sixel capability. */
   static const char *const tty_feature_sixel_capabilities[] = {
           "Sxl",
           NULL
   };
   static const struct tty_feature tty_feature_sixel = {
           "sixel",
           tty_feature_sixel_capabilities,
           0
   };
   
 /* Available terminal features. */  /* Available terminal features. */
 static const struct tty_feature *const tty_features[] = {  static const struct tty_feature *const tty_features[] = {
         &tty_feature_256,          &tty_feature_256,
Line 352 
Line 363 
         &tty_feature_overline,          &tty_feature_overline,
         &tty_feature_rectfill,          &tty_feature_rectfill,
         &tty_feature_rgb,          &tty_feature_rgb,
           &tty_feature_sixel,
         &tty_feature_strikethrough,          &tty_feature_strikethrough,
         &tty_feature_sync,          &tty_feature_sync,
         &tty_feature_title,          &tty_feature_title,

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27