Patch 9.0.0262 (after 9.0.0261)
Problem: Build failure without the +quickfix feature.
Solution: Add #ifdef.
Files: src/buffer.c
*** ../vim-9.0.0261/src/buffer.c 2022-08-25 12:45:17.838946073 +0100
--- src/buffer.c 2022-08-25 13:53:00.197785096 +0100
***************
*** 222,228 ****
--- 222,230 ----
// Read the file if there is one.
if (curbuf->b_ffname != NULL
+ #ifdef FEAT_QUICKFIX
&& !bt_quickfix(curbuf)
+ #endif
&& !bt_nofilename(curbuf)
#ifdef FEAT_NETBEANS_INTG
&& netbeansReadFile
*** ../vim-9.0.0261/src/version.c 2022-08-25 12:45:17.838946073 +0100
--- src/version.c 2022-08-25 13:53:59.313831461 +0100
***************
*** 733,734 ****
--- 733,736 ----
{ /* Add new patch number below this line */
+ /**/
+ 262,
/**/
--
Q: What kind of stuff do you do?
A: I collect hobbies.
/// 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/20220825131908.E7B571C090E%40moolenaar.net.