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.0.102 < prev    next >
Encoding:
Internet Message Format  |  2001-12-29  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.102
  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.0.102
  11. Problem:    When changing folds the cursor may appear halfway a closed fold.
  12.         (Nam SungHyun)
  13. Solution:   Set w_cline_folded correctly. (Yasuhiro Matsumoto)
  14. Files:        src/move.c
  15.  
  16.  
  17. *** ../vim60.101/src/move.c    Tue Nov  6 21:48:06 2001
  18. --- src/move.c    Thu Dec 27 17:19:17 2001
  19. ***************
  20. *** 775,781 ****
  21.           /* a line that is too long to fit on the last screen line */
  22.           wp->w_cline_height = 0;
  23.   #ifdef FEAT_FOLDING
  24. !         wp->w_cline_folded = FALSE;
  25.   #endif
  26.       }
  27.       else
  28. --- 775,782 ----
  29.           /* a line that is too long to fit on the last screen line */
  30.           wp->w_cline_height = 0;
  31.   #ifdef FEAT_FOLDING
  32. !         wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
  33. !                               NULL, NULL, TRUE, NULL);
  34.   #endif
  35.       }
  36.       else
  37. *** ../vim60.101/src/version.c    Sat Dec 15 21:56:10 2001
  38. --- src/version.c    Sun Dec 30 17:24:29 2001
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     102,
  45.   /**/
  46.  
  47. -- 
  48. Women are probably the main cause of free software starvation.
  49.  
  50.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  51. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  52.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  53.