0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 7.4.863

Problem:    plines_nofill() used without the diff feature.
Solution:   Define PLINES_NOFILL().
This commit is contained in:
Bram Moolenaar
2015-09-09 20:59:37 +02:00
parent 5325b9bbae
commit 43335ea394
3 changed files with 16 additions and 33 deletions

View File

@@ -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