]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.083
- updated to 7.2.102
[packages/vim.git] / 7.2.083
CommitLineData
16604d53
ER
1To: vim-dev@vim.org
2Subject: Patch 7.2.083
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.083
11Problem: ":tag" does not return to the right tag entry from the tag stack.
12Solution: Don't change the current match when there is no argument.
13 (Erik Falor)
14Files: src/tag.c
15
16
17*** ../vim-7.2.082/src/tag.c Tue Dec 9 12:12:31 2008
18--- src/tag.c Tue Jan 13 17:14:59 2009
19***************
20*** 515,521 ****
21 * If a count is supplied to the ":tag <name>" command, then
22 * jump to count'th matching tag.
23 */
24! if (type == DT_TAG && count > 0)
25 cur_match = count - 1;
26
27 if (type == DT_SELECT || type == DT_JUMP
28--- 515,521 ----
29 * If a count is supplied to the ":tag <name>" command, then
30 * jump to count'th matching tag.
31 */
32! if (type == DT_TAG && *tag != NUL && count > 0)
33 cur_match = count - 1;
34
35 if (type == DT_SELECT || type == DT_JUMP
36*** ../vim-7.2.082/src/version.c Tue Jan 13 16:57:09 2009
37--- src/version.c Tue Jan 13 17:16:42 2009
38***************
39*** 678,679 ****
40--- 678,681 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 83,
44 /**/
45
46--
47Engineers will go without food and hygiene for days to solve a problem.
48(Other times just because they forgot.)
49 (Scott Adams - The Dilbert principle)
50
51 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
52/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53\\\ download, build and distribute -- http://www.A-A-P.org ///
54 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.033922 seconds and 4 git commands to generate.