On Wed, Jan 14, 2015 at 02:09:04PM +0100, Bram Moolenaar wrote:
>
> Patch 7.4.571 (after 7.4.569)
> Problem: Can't build with tiny features. (Ike Devolder)
> Solution: Add #ifdef.
> Files: src/getchar.c
>
>
> *** ../vim-7.4.570/src/getchar.c 2015-01-14 12:44:38.403422124 +0100
> --- src/getchar.c 2015-01-14 14:06:14.457992406 +0100
> ***************
> *** 3710,3718 ****
> --- 3710,3720 ----
> else if (*keys == Ctrl_C)
> {
> /* If CTRL-C has been unmapped, reuse it for Interrupting. */
> + #ifdef FEAT_LOCALMAP
> if (map_table == curbuf->b_maphash)
> curbuf->b_mapped_ctrl_c &= ~mode;
> else
> + #endif
> mapped_ctrl_c &= ~mode;
> }
> goto theend;
> ***************
> *** 3750,3758 ****
> --- 3752,3762 ----
> /* If CTRL-C has been mapped, don't always use it for Interrupting. */
> if (*keys == Ctrl_C)
> {
> + #ifdef FEAT_LOCALMAP
> if (map_table == curbuf->b_maphash)
> curbuf->b_mapped_ctrl_c |= mode;
> else
> + #endif
> mapped_ctrl_c |= mode;
> }
>
> *** ../vim-7.4.570/src/version.c 2015-01-14 14:04:05.511397639 +0100
> --- src/version.c 2015-01-14 14:07:02.889464623 +0100
> ***************
> *** 743,744 ****
> --- 743,746 ----
> { /* Add new patch number below this line */
> + /**/
> + 571,
> /**/
>
> --
> hundred-and-one symptoms of being an internet addict:
> 91. It's Saturday afternoon in the middle of May and you
> are on computer.
>
> /// 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.Thanks, tiny builds fine again. -- Ike -- -- 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.
pgp5ekKnLBs2R.pgp
Description: PGP signature
