To: vim_dev@googlegroups.com Subject: Patch 8.2.1245 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.1245 Problem: Build failure in tiny version. Solution: Add #ifdef. Files: src/scriptfile.c *** ../vim-8.2.1244/src/scriptfile.c 2020-07-19 14:41:54.625623029 +0200 --- src/scriptfile.c 2020-07-19 16:31:16.337798211 +0200 *************** *** 1768,1775 **** if (sp->nextline != NULL && (*(p = skipwhite(sp->nextline)) == '\\' || (p[0] == '"' && p[1] == '\\' && p[2] == ' ') || (in_vim9script() ! && (*p == NUL || vim9_comment_start(p))))) { garray_T ga; --- 1768,1778 ---- if (sp->nextline != NULL && (*(p = skipwhite(sp->nextline)) == '\\' || (p[0] == '"' && p[1] == '\\' && p[2] == ' ') + #ifdef FEAT_EVAL || (in_vim9script() ! && (*p == NUL || vim9_comment_start(p))) ! #endif ! )) { garray_T ga; *************** *** 1798,1805 **** ga_concat(&ga, p + 1); } else if (!(p[0] == '"' && p[1] == '\\' && p[2] == ' ') && !(in_vim9script() ! && (*p == NUL || vim9_comment_start(p)))) break; /* drop a # comment or "\ comment line */ } --- 1801,1811 ---- ga_concat(&ga, p + 1); } else if (!(p[0] == '"' && p[1] == '\\' && p[2] == ' ') + #ifdef FEAT_EVAL && !(in_vim9script() ! && (*p == NUL || vim9_comment_start(p))) ! #endif ! ) break; /* drop a # comment or "\ comment line */ } *** ../vim-8.2.1244/src/version.c 2020-07-19 15:49:45.732131023 +0200 --- src/version.c 2020-07-19 16:31:47.485720619 +0200 *************** *** 756,757 **** --- 756,759 ---- { /* Add new patch number below this line */ + /**/ + 1245, /**/ -- Latest survey shows that 3 out of 4 people make up 75% of the world's population. /// Bram Moolenaar -- Bram@Moolenaar.net -- 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 ///