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.357 < prev    next >
Encoding:
Internet Message Format  |  2014-07-08  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.357
  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.357
  11. Problem:    After completion some characters are not redrawn.
  12. Solution:   Clear the command line unconditionally. (Jacob Niehus)
  13. Files:        src/edit.c
  14.  
  15.  
  16. *** ../vim-7.4.356/src/edit.c    2014-06-25 14:39:35.102348584 +0200
  17. --- src/edit.c    2014-07-09 13:22:22.747075922 +0200
  18. ***************
  19. *** 3854,3861 ****
  20.           ins_compl_free();
  21.           compl_started = FALSE;
  22.           compl_matches = 0;
  23. !         if (!shortmess(SHM_COMPLETIONMENU))
  24. !         msg_clr_cmdline();    /* necessary for "noshowmode" */
  25.           ctrl_x_mode = 0;
  26.           compl_enter_selects = FALSE;
  27.           if (edit_submode != NULL)
  28. --- 3854,3860 ----
  29.           ins_compl_free();
  30.           compl_started = FALSE;
  31.           compl_matches = 0;
  32. !         msg_clr_cmdline();    /* necessary for "noshowmode" */
  33.           ctrl_x_mode = 0;
  34.           compl_enter_selects = FALSE;
  35.           if (edit_submode != NULL)
  36. *** ../vim-7.4.356/src/version.c    2014-07-09 13:43:18.399058649 +0200
  37. --- src/version.c    2014-07-09 13:58:35.483046034 +0200
  38. ***************
  39. *** 736,737 ****
  40. --- 736,739 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     357,
  44.   /**/
  45.  
  46. -- 
  47. Why isn't there mouse-flavored cat food?
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  51. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  52.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  53.