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.014 < prev    next >
Encoding:
Internet Message Format  |  2001-10-18  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.014
  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.014
  11. Problem:    When 'modifiable' is off and 'virtualedit' is "all", "rx" on a TAB
  12.         still changes the buffer. (Muraoka Taro)
  13. Solution:   Check if saving the line for undo fails.
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim60.13/src/normal.c    Fri Sep 28 22:19:57 2001
  18. --- src/normal.c    Fri Oct 19 11:18:05 2001
  19. ***************
  20. *** 5764,5770 ****
  21.       /* Break tabs, etc. */
  22.       if (virtual_active())
  23.       {
  24. !     u_save_cursor();
  25.       if (gchar_cursor() == NUL)
  26.       {
  27.           /* Add extra space and put the cursor on the first one. */
  28. --- 5764,5771 ----
  29.       /* Break tabs, etc. */
  30.       if (virtual_active())
  31.       {
  32. !     if (u_save_cursor() == FAIL)
  33. !         return;
  34.       if (gchar_cursor() == NUL)
  35.       {
  36.           /* Add extra space and put the cursor on the first one. */
  37. *** ../vim60.13/src/version.c    Fri Oct 19 11:18:45 2001
  38. --- src/version.c    Fri Oct 19 11:17:35 2001
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     14,
  45.   /**/
  46.  
  47. -- 
  48. From "know your smileys":
  49.  %    Bike accident (a bit far-fetched, I suppose)
  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.