summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-08 17:55:32 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-08 17:55:32 +0100
commitbf499c0e6f30a94fe062f83ea0190f93178d0d74 (patch)
tree5bbe3bff2e0fff370c86d644236196f3e077bc0b /src
parent251c1e2ed810d532f7c7d7eb5d6ed5e28a12e501 (diff)
patch 9.0.0699: tiny build failsv9.0.0699
Problem: Tiny build fails. Solution: Add #ifdef.
Diffstat (limited to 'src')
-rw-r--r--src/ops.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/ops.c b/src/ops.c
index 3e641f4bf5..38827fffd0 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -2207,6 +2207,7 @@ theend:
return ret;
}
+#ifdef FEAT_LINEBREAK
/*
* Reset 'linebreak' and take care of side effects.
* Returns the previous value, to be passed to restore_lbr().
@@ -2235,6 +2236,7 @@ restore_lbr(int lbr_saved)
curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
}
}
+#endif
/*
* prepare a few things for block mode yank/delete/tilde
diff --git a/src/version.c b/src/version.c
index 6ef1b0d807..c162a2085e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 699,
+/**/
698,
/**/
697,