Mercurial > vim
changeset 30729:cb32822d2730 v9.0.0699
patch 9.0.0699: tiny build fails
Commit: https://github.com/vim/vim/commit/bf499c0e6f30a94fe062f83ea0190f93178d0d74
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 8 17:55:32 2022 +0100
patch 9.0.0699: tiny build fails
Problem: Tiny build fails.
Solution: Add #ifdef.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 08 Oct 2022 19:00:03 +0200 |
parents | 23a52770932d |
children | f4a543b2595c |
files | src/ops.c src/version.c |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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