Patch 9.0.0123 (after 9.0.0121)
Problem: Cannot build with small features.
Solution: Add #ifdef.
Files: src/charset.c
*** ../vim-9.0.0122/src/charset.c 2022-07-31 18:00:07.363544792 +0100
--- src/charset.c 2022-07-31 18:01:39.127366973 +0100
***************
*** 771,777 ****
--- 771,779 ----
chartabsize_T cts;
init_chartabsize_arg(&cts, wp, lnum, 0, line, line);
+ #ifdef FEAT_PROP_POPUP
cts.cts_with_trailing = len == MAXCOL;
+ #endif
for ( ; *cts.cts_ptr != NUL && (len == MAXCOL || cts.cts_ptr < line +
len);
MB_PTR_ADV(cts.cts_ptr))
cts.cts_vcol += win_lbr_chartabsize(&cts, NULL);
*** ../vim-9.0.0122/src/version.c 2022-07-31 18:00:07.363544792 +0100
--- src/version.c 2022-07-31 18:02:10.731305445 +0100
***************
*** 737,738 ****
--- 737,740 ----
{ /* Add new patch number below this line */
+ /**/
+ 123,
/**/
--
hundred-and-one symptoms of being an internet addict:
210. When you get a divorce, you don't care about who gets the children,
but discuss endlessly who can use the email address.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220731170450.7813F1C0ED5%40moolenaar.net.