Patch 9.0.0929 (after 9.0.0927)
Problem: Build failure with tiny version. (Tony Mechelynck)
Solution: Add #ifdef.
Files: src/window.c
*** ../vim-9.0.0928/src/window.c 2022-11-23 11:36:16.525837135 +0000
--- src/window.c 2022-11-23 14:31:37.010322036 +0000
***************
*** 3134,3140 ****
#endif
}
! if (trigger_scroll && scroll_dict != NULL)
{
#ifdef FEAT_EVAL
save_v_event_T save_v_event;
--- 3134,3144 ----
#endif
}
! if (trigger_scroll
! #ifdef FEAT_EVAL
! && scroll_dict != NULL
! #endif
! )
{
#ifdef FEAT_EVAL
save_v_event_T save_v_event;
*** ../vim-9.0.0928/src/version.c 2022-11-23 12:06:05.661733908 +0000
--- src/version.c 2022-11-23 14:32:21.490356140 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 929,
/**/
--
An actual excerpt from a classified section of a city newspaper:
"Illiterate? Write today for free help!"
/// 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/20221123143359.83EF61C212A%40moolenaar.net.