]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.575
- up to 7.3.600
[packages/vim.git] / 7.3.575
CommitLineData
8bb52fd3
ER
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.575
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.575
11Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller)
12Solution: Check for a pending operator.
13Files: 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--
54hundred-and-one symptoms of being an internet addict:
5574. 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 ///
This page took 0.104378 seconds and 4 git commands to generate.