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.154 < prev    next >
Encoding:
Internet Message Format  |  2002-08-17  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.154
  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.154
  11. Problem:    DJGPP: "vim -h" leaves the cursor in a wrong position.
  12. Solution:   Don't position the cursor using uninitilized variables. (Jim
  13.         Dunleavy)
  14. Files:        src/os_msdos.c
  15.  
  16.  
  17. *** ../vim61.153/src/os_msdos.c    Wed May 15 22:00:04 2002
  18. --- src/os_msdos.c    Wed Aug  7 21:03:39 2002
  19. ***************
  20. *** 139,146 ****
  21.       static void
  22.   set_sys_cursor(void)
  23.   {
  24. !     myflush();
  25. !     gotoxy(S_iCurrentColumn + 1, S_iCurrentRow + 1);
  26.   }
  27.   
  28.       static void
  29. --- 139,149 ----
  30.       static void
  31.   set_sys_cursor(void)
  32.   {
  33. !     if (term_console && full_screen)
  34. !     {
  35. !     myflush();
  36. !     gotoxy(S_iCurrentColumn + 1, S_iCurrentRow + 1);
  37. !     }
  38.   }
  39.   
  40.       static void
  41. *** ../vim61.153/src/version.c    Tue Aug 13 21:35:32 2002
  42. --- src/version.c    Sun Aug 18 15:47:14 2002
  43. ***************
  44. *** 608,609 ****
  45. --- 608,611 ----
  46.   {   /* Add new patch number below this line */
  47. + /**/
  48. +     154,
  49.   /**/
  50.  
  51. -- 
  52. hundred-and-one symptoms of being an internet addict:
  53. 229. You spend so much time thinking what to add on this list.
  54.  
  55.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  56. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  57. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  58.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  59.