home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.4 / 7.4.571 < prev    next >
Encoding:
Internet Message Format  |  2015-01-14  |  1.8 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.571
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.571 (after 7.4.569)
  11. Problem:    Can't build with tiny features. (Ike Devolder)
  12. Solution:   Add #ifdef.
  13. Files:        src/getchar.c
  14.  
  15.  
  16. *** ../vim-7.4.570/src/getchar.c    2015-01-14 12:44:38.403422124 +0100
  17. --- src/getchar.c    2015-01-14 14:06:14.457992406 +0100
  18. ***************
  19. *** 3710,3718 ****
  20. --- 3710,3720 ----
  21.       else if (*keys == Ctrl_C)
  22.       {
  23.           /* If CTRL-C has been unmapped, reuse it for Interrupting. */
  24. + #ifdef FEAT_LOCALMAP
  25.           if (map_table == curbuf->b_maphash)
  26.           curbuf->b_mapped_ctrl_c &= ~mode;
  27.           else
  28. + #endif
  29.           mapped_ctrl_c &= ~mode;
  30.       }
  31.       goto theend;
  32. ***************
  33. *** 3750,3758 ****
  34. --- 3752,3762 ----
  35.       /* If CTRL-C has been mapped, don't always use it for Interrupting. */
  36.       if (*keys == Ctrl_C)
  37.       {
  38. + #ifdef FEAT_LOCALMAP
  39.       if (map_table == curbuf->b_maphash)
  40.           curbuf->b_mapped_ctrl_c |= mode;
  41.       else
  42. + #endif
  43.           mapped_ctrl_c |= mode;
  44.       }
  45.   
  46. *** ../vim-7.4.570/src/version.c    2015-01-14 14:04:05.511397639 +0100
  47. --- src/version.c    2015-01-14 14:07:02.889464623 +0100
  48. ***************
  49. *** 743,744 ****
  50. --- 743,746 ----
  51.   {   /* Add new patch number below this line */
  52. + /**/
  53. +     571,
  54.   /**/
  55.  
  56. -- 
  57. hundred-and-one symptoms of being an internet addict:
  58. 91. It's Saturday afternoon in the middle of May and you
  59.     are on computer.
  60.  
  61.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  62. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  63. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  64.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  65.