diff options
-rw-r--r-- | src/fileio.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 1fcf0d983..5b5699d65 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -1300,7 +1300,7 @@ retry: cryptkey = check_for_cryptkey(cryptkey, ptr, &size, &filesize, newfile, sfname, &did_ask_for_key); -# ifdef CRYPT_NOT_INPLACE +# if defined(CRYPT_NOT_INPLACE) && defined(FEAT_PERSISTENT_UNDO) if (curbuf->b_cryptstate != NULL && !crypt_works_inplace(curbuf->b_cryptstate)) // reading undo file requires crypt_decode_inplace() diff --git a/src/version.c b/src/version.c index 69707fcd5..4a1b0388e 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4142, +/**/ 4141, /**/ 4140, |