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 / 5.7.008 < prev    next >
Encoding:
Internet Message Format  |  2000-08-04  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 5.7.008
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 5.7.008
  8. Problem:    In Ex mode, backspacing over the first TAB doesn't work properly.
  9.         (Wichert Akkerman)
  10. Solution:   Switch the cursor on before printing the newline.
  11. Files:        src/ex_getln.c
  12.  
  13.  
  14. *** ../vim-5.7.7/src/ex_getln.c    Mon Jun  5 12:35:31 2000
  15. --- src/ex_getln.c    Sat Aug  5 16:48:39 2000
  16. ***************
  17. *** 1408,1413 ****
  18. --- 1408,1417 ----
  19.       int            vcol = 0;
  20.   #endif
  21.   
  22. +     /* Switch cursor on now.  This avoids that it happens after the "\n", which
  23. +      * confuses the system function that computes tabstops. */
  24. +     cursor_on();
  25.       /* always start in column 0; write a newline if necessary */
  26.       compute_cmdrow();
  27.       if (msg_col)
  28. *** ../vim-5.7.7/src/version.c    Sat Aug  5 16:22:38 2000
  29. --- src/version.c    Sat Aug  5 16:52:29 2000
  30. ***************
  31. *** 439,440 ****
  32. --- 439,442 ----
  33.   {   /* Add new patch number below this line */
  34. + /**/
  35. +     8,
  36.   /**/
  37.  
  38. -- 
  39. hundred-and-one symptoms of being an internet addict:
  40. 128. You can access the Net -- via your portable and cellular phone.
  41.  
  42. ///  Bram Moolenaar     Bram@moolenaar.net     http://www.moolenaar.net  \\\
  43. \\\  Vim: http://www.vim.org      ICCF Holland: http://iccf-holland.org  ///
  44.