comparison src/version.c @ 15138:9df130fd5e0d v8.1.0579

patch 8.1.0579: cannot attach properties to text commit https://github.com/vim/vim/commit/98aefe7c3250bb5d4153b994f878594d1745424e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 13 22:20:09 2018 +0100 patch 8.1.0579: cannot attach properties to text Problem: Cannot attach properties to text. Solution: First part of adding text properties.
author Bram Moolenaar <Bram@vim.org>
date Thu, 13 Dec 2018 22:30:08 +0100
parents 1f3fe26f8e3f
children fd2286799026
comparison
equal deleted inserted replaced
15137:44f47a35a3f4 15138:9df130fd5e0d
651 # ifdef TERMINFO 651 # ifdef TERMINFO
652 "+terminfo", 652 "+terminfo",
653 # else 653 # else
654 "-terminfo", 654 "-terminfo",
655 # endif 655 # endif
656 #else /* unix always includes termcap support */ 656 #endif
657 #ifdef FEAT_TERMRESPONSE
658 "+termresponse",
659 #else
660 "-termresponse",
661 #endif
662 #ifdef FEAT_TEXTOBJ
663 "+textobjects",
664 #else
665 "-textobjects",
666 #endif
667 #ifdef FEAT_TEXT_PROP
668 "+textprop",
669 #else
670 "-textprop",
671 #endif
672 #if !defined(UNIX)
673 /* unix always includes termcap support */
657 # ifdef HAVE_TGETENT 674 # ifdef HAVE_TGETENT
658 "+tgetent", 675 "+tgetent",
659 # else 676 # else
660 "-tgetent", 677 "-tgetent",
661 # endif 678 # endif
662 #endif
663 #ifdef FEAT_TERMRESPONSE
664 "+termresponse",
665 #else
666 "-termresponse",
667 #endif
668 #ifdef FEAT_TEXTOBJ
669 "+textobjects",
670 #else
671 "-textobjects",
672 #endif 679 #endif
673 #ifdef FEAT_TIMERS 680 #ifdef FEAT_TIMERS
674 "+timers", 681 "+timers",
675 #else 682 #else
676 "-timers", 683 "-timers",
790 NULL 797 NULL
791 }; 798 };
792 799
793 static int included_patches[] = 800 static int included_patches[] =
794 { /* Add new patch number below this line */ 801 { /* Add new patch number below this line */
802 /**/
803 579,
795 /**/ 804 /**/
796 578, 805 578,
797 /**/ 806 /**/
798 577, 807 577,
799 /**/ 808 /**/