Problem: Without the syntax feature highlighting doesn't work.
Solution: Always use unsigned short to store attributes.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1042,
/**/
1041,
/**/
* The characters and attributes cached for the screen.
*/
typedef char_u schar_T;
-#ifdef FEAT_SYN_HL
typedef unsigned short sattr_T;
-# define MAX_TYPENR 65535
-#else
-typedef unsigned char sattr_T;
-# define MAX_TYPENR 255
-#endif
+#define MAX_TYPENR 65535
/*
* The u8char_T can hold one decoded UTF-8 character.