# HG changeset patch # User Bram Moolenaar # Date 1544739305 -3600 # Node ID fd228679902625e27ab49ecdae57d4f0f3630f46 # Parent 3fef85bcc5a8f55044f9c0cd580f7cb9c6245a6a patch 8.1.0580: invalid memory access when using text properties commit https://github.com/vim/vim/commit/2fa7fad831a860b627b5d6980aae0eeebfda0b3b Author: Bram Moolenaar Date: Thu Dec 13 23:05:56 2018 +0100 patch 8.1.0580: invalid memory access when using text properties Problem: Invalid memory access when using text properties. Solution: Disable text properties for now. diff --git a/src/feature.h b/src/feature.h --- a/src/feature.h +++ b/src/feature.h @@ -505,7 +505,7 @@ * +textprop Text properties */ #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL) -# define FEAT_TEXT_PROP +// # define FEAT_TEXT_PROP #endif /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -800,6 +800,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 580, +/**/ 579, /**/ 578,