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.088 < prev    next >
Encoding:
Internet Message Format  |  2001-11-05  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.088
  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.088
  11. Problem:    "." doesn't work after using "rx" in Visual mode.  (Charles
  12.         Campbell)
  13. Solution:   Also store the replacement character in the redo buffer.
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim60.87/src/normal.c    Tue Nov  6 14:39:24 2001
  18. --- src/normal.c    Tue Nov  6 16:47:09 2001
  19. ***************
  20. *** 1515,1523 ****
  21.               && oap->motion_force == NUL
  22.               )
  23.           {
  24. !         prep_redo(oap->regname, 0L, NUL, 'v', NUL,
  25. !             get_op_char(oap->op_type),
  26. !                          get_extra_op_char(oap->op_type));
  27.           redo_VIsual_mode = resel_VIsual_mode;
  28.           redo_VIsual_col = resel_VIsual_col;
  29.           redo_VIsual_line_count = resel_VIsual_line_count;
  30. --- 1515,1522 ----
  31.               && oap->motion_force == NUL
  32.               )
  33.           {
  34. !         prep_redo(oap->regname, 0L, NUL, 'v', get_op_char(oap->op_type),
  35. !                  get_extra_op_char(oap->op_type), cap->nchar);
  36.           redo_VIsual_mode = resel_VIsual_mode;
  37.           redo_VIsual_col = resel_VIsual_col;
  38.           redo_VIsual_line_count = resel_VIsual_line_count;
  39. *** ../vim60.87/src/version.c    Tue Nov  6 16:30:59 2001
  40. --- src/version.c    Tue Nov  6 16:55:15 2001
  41. ***************
  42. *** 608,609 ****
  43. --- 608,611 ----
  44.   {   /* Add new patch number below this line */
  45. + /**/
  46. +     88,
  47.   /**/
  48.  
  49. -- 
  50. Don't Panic!
  51.         -- The Hitchhiker's Guide to the Galaxy
  52.  
  53.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  54. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  55.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  56.