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 / 6.1.085 < prev    next >
Encoding:
Internet Message Format  |  2002-06-02  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.085
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.1.085
  11. Problem:    When using CTRL-O CTRL-\ CTRL-N from Insert mode, the displayed
  12.         mode "(insert)" isn't removed. (Benji Fisher)
  13. Solution:   Clear the command line.
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim61.084/src/normal.c    Tue May  7 21:12:30 2002
  18. --- src/normal.c    Mon Jun  3 21:50:59 2002
  19. ***************
  20. *** 7521,7526 ****
  21. --- 7521,7528 ----
  22.       if (safe_vgetc() == Ctrl_N)
  23.       {
  24.       clearop(cap->oap);
  25. +     if (restart_edit != 0 && p_smd)
  26. +         clear_cmdline = TRUE;        /* unshow mode later */
  27.       restart_edit = 0;
  28.   #ifdef FEAT_CMDWIN
  29.       if (cmdwin_type != 0)
  30. *** ../vim61.084/src/version.c    Sat Jun  1 22:36:24 2002
  31. --- src/version.c    Mon Jun  3 21:48:46 2002
  32. ***************
  33. *** 608,609 ****
  34. --- 608,611 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     85,
  38.   /**/
  39.  
  40. -- 
  41. From "know your smileys"
  42.  8<}}    Glasses, big nose, beard
  43.  
  44.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  45. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  46. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  47.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  48.