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 / 7.3 / 7.3.575 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.5 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.575
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.575
  11. Problem:    "ygt" tries to yank instead of giving an error. (Daniel Mueller)
  12. Solution:   Check for a pending operator.
  13. Files:        src/normal.c
  14.  
  15.  
  16. *** ../vim-7.3.574/src/normal.c    2012-06-06 16:12:54.000000000 +0200
  17. --- src/normal.c    2012-06-29 13:50:26.000000000 +0200
  18. ***************
  19. *** 8393,8402 ****
  20.   
  21.   #ifdef FEAT_WINDOWS
  22.       case 't':
  23. !     goto_tabpage((int)cap->count0);
  24.       break;
  25.       case 'T':
  26. !     goto_tabpage(-(int)cap->count1);
  27.       break;
  28.   #endif
  29.   
  30. --- 8393,8404 ----
  31.   
  32.   #ifdef FEAT_WINDOWS
  33.       case 't':
  34. !     if (!checkclearop(oap))
  35. !         goto_tabpage((int)cap->count0);
  36.       break;
  37.       case 'T':
  38. !     if (!checkclearop(oap))
  39. !         goto_tabpage(-(int)cap->count1);
  40.       break;
  41.   #endif
  42.   
  43. *** ../vim-7.3.574/src/version.c    2012-06-29 13:44:37.000000000 +0200
  44. --- src/version.c    2012-06-29 13:52:01.000000000 +0200
  45. ***************
  46. *** 716,717 ****
  47. --- 716,719 ----
  48.   {   /* Add new patch number below this line */
  49. + /**/
  50. +     575,
  51.   /**/
  52.  
  53. -- 
  54. hundred-and-one symptoms of being an internet addict:
  55. 74. Your most erotic dreams are about cybersex
  56.  
  57.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  58. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  59. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  60.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  61.