# HG changeset patch # User Bram Moolenaar # Date 1665248403 -7200 # Node ID cb32822d2730927776eb502c98e38c919850ef11 # Parent 23a52770932d5dad5dff66047dc9261b0716f249 patch 9.0.0699: tiny build fails Commit: https://github.com/vim/vim/commit/bf499c0e6f30a94fe062f83ea0190f93178d0d74 Author: Bram Moolenaar Date: Sat Oct 8 17:55:32 2022 +0100 patch 9.0.0699: tiny build fails Problem: Tiny build fails. Solution: Add #ifdef. diff --git a/src/ops.c b/src/ops.c --- 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 --- 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,