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.169 < prev    next >
Encoding:
Internet Message Format  |  2014-02-04  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.169
  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.169
  11. Problem:    ":sleep" puts cursor in the wrong column. (Liang Li)
  12. Solution:   Add the window offset. (Christian Brabandt)
  13. Files:        src/ex_docmd.c
  14.  
  15.  
  16. *** ../vim-7.4.168/src/ex_docmd.c    2014-01-10 15:53:09.000000000 +0100
  17. --- src/ex_docmd.c    2014-02-05 22:45:39.318586773 +0100
  18. ***************
  19. *** 8371,8377 ****
  20.       {
  21.       n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
  22.       if (n >= 0)
  23. !         windgoto((int)n, curwin->w_wcol);
  24.       }
  25.   
  26.       len = eap->line2;
  27. --- 8371,8377 ----
  28.       {
  29.       n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
  30.       if (n >= 0)
  31. !         windgoto((int)n, W_WINCOL(curwin) + curwin->w_wcol);
  32.       }
  33.   
  34.       len = eap->line2;
  35. *** ../vim-7.4.168/src/version.c    2014-02-05 22:41:11.430582669 +0100
  36. --- src/version.c    2014-02-05 22:44:51.458586040 +0100
  37. ***************
  38. *** 740,741 ****
  39. --- 740,743 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     169,
  43.   /**/
  44.  
  45. -- 
  46. ARTHUR: This new learning amazes me, Sir Bedevere.  Explain again how sheep's
  47.         bladders may be employed to prevent earthquakes.
  48.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  53.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  54.