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.130 < prev    next >
Encoding:
Internet Message Format  |  2002-01-12  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.130
  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.130
  11. Problem:    When using ":cprev" while the error window is open, and the new
  12.             line at the top wraps, the window isn't correctly drawn.  
  13.             (Yegappan Lakshmanan)
  14. Solution:   When redrawing the topline don't scroll twice.
  15. Files:      src/screen.c
  16.  
  17.  
  18. *** ../vim60.129/src/screen.c    Sun Dec 30 21:41:24 2001
  19. --- src/screen.c    Sun Jan 13 20:33:11 2002
  20. ***************
  21. *** 944,950 ****
  22.   #endif
  23.           )
  24.       {
  25. !     if (buf->b_mod_set && wp->w_topline == mod_top)
  26.       {
  27.           /*
  28.            * w_topline is the first changed line, the scrolling will be done
  29. --- 944,950 ----
  30.   #endif
  31.           )
  32.       {
  33. !     if (mod_top != 0 && wp->w_topline == mod_top)
  34.       {
  35.           /*
  36.            * w_topline is the first changed line, the scrolling will be done
  37. *** ../vim60.129/src/version.c    Sat Jan 12 16:39:27 2002
  38. --- src/version.c    Sun Jan 13 20:38:54 2002
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     130,
  45.   /**/
  46.  
  47. -- 
  48. It is too bad that the speed of light hasn't kept pace with the
  49. changes in CPU speed and network bandwidth. -- <wietse@porcupine.org>
  50.  
  51.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  52. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  53.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  54.