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.590 < prev    next >
Encoding:
Internet Message Format  |  2015-01-22  |  1.7 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.590
  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.590
  11. Problem:    Using ctrl_x_mode as if it contains flags.
  12. Solution:   Don't use AND with CTRL_X_OMNI. (Hirohito Higashi)
  13. Files:        src/edit.c
  14.  
  15.  
  16. *** ../vim-7.4.589/src/edit.c    2014-11-12 18:59:17.602000656 +0100
  17. --- src/edit.c    2015-01-20 19:43:45.376745467 +0100
  18. ***************
  19. *** 3394,3400 ****
  20.        * allow the word to be deleted, we won't match everything. */
  21.       if ((int)(p - line) - (int)compl_col < 0
  22.           || ((int)(p - line) - (int)compl_col == 0
  23. !         && (ctrl_x_mode & CTRL_X_OMNI) == 0))
  24.       return K_BS;
  25.   
  26.       /* Deleted more than what was used to find matches or didn't finish
  27. --- 3394,3400 ----
  28.        * allow the word to be deleted, we won't match everything. */
  29.       if ((int)(p - line) - (int)compl_col < 0
  30.           || ((int)(p - line) - (int)compl_col == 0
  31. !         && ctrl_x_mode != CTRL_X_OMNI))
  32.       return K_BS;
  33.   
  34.       /* Deleted more than what was used to find matches or didn't finish
  35. *** ../vim-7.4.589/src/version.c    2015-01-20 19:39:31.655524020 +0100
  36. --- src/version.c    2015-01-22 22:40:04.297786215 +0100
  37. ***************
  38. *** 743,744 ****
  39. --- 743,746 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     590,
  43.   /**/
  44.  
  45. -- 
  46. Laughing helps. It's like jogging on the inside.
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  50. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  51.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  52.