To: vim_dev@googlegroups.com Subject: Patch 7.4.1613 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.4.1613 (after 7.4.1612) Problem: Still can't build with small features. Solution: Adjust #ifdefs. Files: src/ex_getln.c *** ../vim-7.4.1612/src/ex_getln.c 2016-03-19 22:29:42.869107206 +0100 --- src/ex_getln.c 2016-03-19 22:44:10.723802696 +0100 *************** *** 5861,5867 **** #endif /* FEAT_CMDHIST */ ! #if defined(FEAT_EVAL) || defined(PROTO) /* * Get pointer to the command line info to use. cmdline_paste() may clear * ccline and put the previous value in prev_ccline. --- 5861,5867 ---- #endif /* FEAT_CMDHIST */ ! #if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO) /* * Get pointer to the command line info to use. cmdline_paste() may clear * ccline and put the previous value in prev_ccline. *************** *** 5877,5883 **** --- 5877,5885 ---- return &prev_ccline; return NULL; } + #endif + #if defined(FEAT_EVAL) || defined(PROTO) /* * Get the current command line in allocated memory. * Only works when the command line is being edited. *************** *** 5948,5954 **** if (p == NULL) return NUL; if (p->cmdfirstc == NUL) ! return (p->input_fn) ? '@' : '-'; return p->cmdfirstc; } #endif --- 5950,5960 ---- if (p == NULL) return NUL; if (p->cmdfirstc == NUL) ! return ! # ifdef FEAT_EVAL ! (p->input_fn) ? '@' : ! # endif ! '-'; return p->cmdfirstc; } #endif *** ../vim-7.4.1612/src/version.c 2016-03-19 22:29:42.869107206 +0100 --- src/version.c 2016-03-19 22:44:40.503483829 +0100 *************** *** 750,751 **** --- 750,753 ---- { /* Add new patch number below this line */ + /**/ + 1613, /**/ -- You are only young once, but you can stay immature indefinitely. /// 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 ///