rename: ENABLE_SIXEL to ENABLE_SIXEL_IMAGES

This commit is contained in:
Thomas Adam
2026-03-02 17:10:19 +00:00
parent 5a233e26ec
commit aefdb34846
9 changed files with 48 additions and 48 deletions

View File

@@ -2564,11 +2564,11 @@ format_cb_version(__unused struct format_tree *ft)
static void *
format_cb_image_support(__unused struct format_tree *ft)
{
#if defined(ENABLE_SIXEL) && defined(ENABLE_KITTY_IMAGES)
#if defined(ENABLE_SIXEL_IMAGES) && defined(ENABLE_KITTY_IMAGES)
return (xstrdup("kitty,sixel"));
#endif
#ifdef ENABLE_SIXEL
#ifdef ENABLE_SIXEL_IMAGES
return (xstrdup("sixel"));
#endif