Patch 9.0.0209 (after 9.0.0208)
Problem: Build error with small features.
Solution: Add #ifdef.
Files: src/drawline.c
*** ../vim-9.0.0208/src/drawline.c 2022-08-14 16:36:16.674056502 +0100
--- src/drawline.c 2022-08-14 16:49:30.328385759 +0100
***************
*** 2993,2999 ****
// Don't use "extra_attr" until n_attr_skip is zero.
if (n_attr_skip == 0 && n_attr > 0
&& wlv.draw_state == WL_LINE
! && (!attr_pri || (text_prop_flags & PT_FLAG_OVERRIDE)))
{
#ifdef LINE_ATTR
if (line_attr)
--- 2993,3003 ----
// Don't use "extra_attr" until n_attr_skip is zero.
if (n_attr_skip == 0 && n_attr > 0
&& wlv.draw_state == WL_LINE
! && (!attr_pri
! #ifdef FEAT_PROP_POPUP
! || (text_prop_flags & PT_FLAG_OVERRIDE)
! #endif
! ))
{
#ifdef LINE_ATTR
if (line_attr)
*** ../vim-9.0.0208/src/version.c 2022-08-14 16:36:16.674056502 +0100
--- src/version.c 2022-08-14 16:50:23.804270924 +0100
***************
*** 737,738 ****
--- 737,740 ----
{ /* Add new patch number below this line */
+ /**/
+ 209,
/**/
--
** Hello and Welcome to the Psychiatric Hotline **
If you are obsessive-compulsive, please press 1 repeatedly.
If you are co-dependent, please ask someone to press 2.
If you have multiple personalities, please press 3, 4, 5 and 6.
If you are paranoid-delusional, we know who you are and what you want
- just stay on the line so we can trace the call.
If you are schizophrenic, listen carefully and a little voice will
tell you which number to press next.
If you are manic-depressive, it doesn't matter which number you press
- no one will answer.
If you suffer from panic attacks, push every button you can find.
If you are sane, please hold on - we have the rest of humanity on the
other line and they desparately want to ask you a few questions.
/// 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/20220814155121.733A81C04B1%40moolenaar.net.