From fa6d5afd8459cfcbed2d91e0280d6f7fb9fcdb18 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 14 Oct 2007 13:33:20 +0000 Subject: [PATCH] updated for version 7.1-139 --- src/fold.c | 7 +++++++ src/version.c | 2 ++ 2 files changed, 9 insertions(+) diff --git a/src/fold.c b/src/fold.c index 07b074863..5e67dd2e6 100644 --- a/src/fold.c +++ b/src/fold.c @@ -858,7 +858,14 @@ foldUpdate(wp, top, bot) || foldmethodIsDiff(wp) #endif || foldmethodIsSyntax(wp)) + { + int save_got_int = got_int; + + /* reset got_int here, otherwise it won't work */ + got_int = FALSE; foldUpdateIEMS(wp, top, bot); + got_int |= save_got_int; + } } /* foldUpdateAll() {{{2 */ diff --git a/src/version.c b/src/version.c index ce42fbc4a..67a1eef5b 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 139, /**/ 138, /**/ -- 2.50.1