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.144 < prev    next >
Encoding:
Internet Message Format  |  2002-01-20  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.144
  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.144
  11. Problem:    After patch 6.0.088 redoing "veU" doesn't work.
  12. Solution:   Don't add the "U" to the redo buffer, it will be used as an undo
  13.         command.
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim60.143/src/normal.c    Sun Dec 30 17:47:16 2001
  18. --- src/normal.c    Mon Jan 21 12:46:56 2002
  19. ***************
  20. *** 1515,1522 ****
  21.               && oap->motion_force == NUL
  22.               )
  23.           {
  24. !         prep_redo(oap->regname, 0L, NUL, 'v', get_op_char(oap->op_type),
  25. !                  get_extra_op_char(oap->op_type), cap->nchar);
  26.           redo_VIsual_mode = resel_VIsual_mode;
  27.           redo_VIsual_col = resel_VIsual_col;
  28.           redo_VIsual_line_count = resel_VIsual_line_count;
  29. --- 1515,1526 ----
  30.               && oap->motion_force == NUL
  31.               )
  32.           {
  33. !         /* Prepare for redoing.  Only use the nchar field for "r",
  34. !          * otherwise it might be the second char of the operator. */
  35. !         prep_redo(oap->regname, 0L, NUL, 'v',
  36. !                 get_op_char(oap->op_type),
  37. !                 get_extra_op_char(oap->op_type),
  38. !                 oap->op_type == OP_REPLACE ? cap->nchar : NUL);
  39.           redo_VIsual_mode = resel_VIsual_mode;
  40.           redo_VIsual_col = resel_VIsual_col;
  41.           redo_VIsual_line_count = resel_VIsual_line_count;
  42. *** ../vim60.143/src/version.c    Thu Jan 17 16:30:27 2002
  43. --- src/version.c    Mon Jan 21 12:50:36 2002
  44. ***************
  45. *** 608,609 ****
  46. --- 608,611 ----
  47.   {   /* Add new patch number below this line */
  48. + /**/
  49. +     144,
  50.   /**/
  51.  
  52. -- 
  53. 'Well, here's something to occupy you and keep your mind off things.'
  54. 'It won't work, I have an exceptionally large mind.'
  55.         -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
  56.  
  57.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  58. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  59.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  60.