From 43335ea394fe247132b9701c55cccf51e6c36425 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 9 Sep 2015 20:59:37 +0200 Subject: patch 7.4.863 Problem: plines_nofill() used without the diff feature. Solution: Define PLINES_NOFILL(). --- src/macros.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/macros.h') diff --git a/src/macros.h b/src/macros.h index 773cffdf7..f70e20614 100644 --- a/src/macros.h +++ b/src/macros.h @@ -315,3 +315,9 @@ # endif # endif #endif + +#ifdef FEAT_DIFF +# define PLINES_NOFILL(x) plines_nofill(x) +#else +# define PLINES_NOFILL(x) plines(x) +#endif -- cgit v1.2.3