Patch 8.0.0138 (after 8.0.0137)
Problem: Small build fails.
Solution: Add #ifdef.
Files: src/ex_docmd.c
*** ../vim-8.0.0137/src/ex_docmd.c 2017-01-02 15:26:24.166610927 +0100
--- src/ex_docmd.c 2017-01-02 16:15:08.274273743 +0100
***************
*** 789,795 ****
/* It's possible to create an endless loop with ":execute", catch that
* here. The value of 200 allows nested function calls, ":source", etc.
* Allow 200 or 'maxfuncdepth', whatever is larger. */
! if (call_depth >= 200 && call_depth >= p_mfd)
{
EMSG(_("E169: Command too recursive"));
#ifdef FEAT_EVAL
--- 789,799 ----
/* It's possible to create an endless loop with ":execute", catch that
* here. The value of 200 allows nested function calls, ":source", etc.
* Allow 200 or 'maxfuncdepth', whatever is larger. */
! if (call_depth >= 200
! #ifdef FEAT_EVAL
! && call_depth >= p_mfd
! #endif
! )
{
EMSG(_("E169: Command too recursive"));
#ifdef FEAT_EVAL
*** ../vim-8.0.0137/src/version.c 2017-01-02 15:26:24.166610927 +0100
--- src/version.c 2017-01-02 16:16:04.445880810 +0100
***************
*** 766,767 ****
--- 766,769 ----
{ /* Add new patch number below this line */
+ /**/
+ 138,
/**/
--
hundred-and-one symptoms of being an internet addict:
174. You know what a listserv is.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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].
For more options, visit https://groups.google.com/d/optout.