commit | 43335ea394fe247132b9701c55cccf51e6c36425 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Sep 09 20:59:37 2015 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Sep 09 20:59:37 2015 +0200 |
tree | a6d49dee3b759cf5b39273b027c402b9c7391751 | |
parent | 5325b9bbae8a717510ef7248f3ce8b50281bd33f [diff] [blame] |
patch 7.4.863 Problem: plines_nofill() used without the diff feature. Solution: Define PLINES_NOFILL().
diff --git a/src/macros.h b/src/macros.h index 773cffd..f70e206 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