]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.316
- updated to 7.1.326
[packages/vim.git] / 7.1.316
CommitLineData
215fbeef
AG
1To: vim-dev@vim.org
2Subject: Patch 7.1.316
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.1.316
11Problem: When 'cscopetag' is set ":tag" gives an error message instead of
12 going to the next tag in the tag stack.
13Solution: Don't call do_cstag() when there is no argument. (Mark Goldman)
14Files: src/ex_docmd.c
15
16
17*** ../vim-7.1.315/src/ex_docmd.c Sun Mar 16 16:02:47 2008
18--- src/ex_docmd.c Fri Jun 20 10:42:30 2008
19***************
20*** 9300,9306 ****
21 break;
22 default: /* ":tag" */
23 #ifdef FEAT_CSCOPE
24! if (p_cst)
25 {
26 do_cstag(eap);
27 return;
28--- 9302,9308 ----
29 break;
30 default: /* ":tag" */
31 #ifdef FEAT_CSCOPE
32! if (p_cst && *eap->arg != NUL)
33 {
34 do_cstag(eap);
35 return;
36*** ../vim-7.1.315/src/version.c Sun Jun 15 14:20:28 2008
37--- src/version.c Fri Jun 20 11:09:35 2008
38***************
39*** 668,669 ****
40--- 673,676 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 316,
44 /**/
45
46--
47Microsoft is to software what McDonalds is to gourmet cooking
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ download, build and distribute -- http://www.A-A-P.org ///
52 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.049646 seconds and 4 git commands to generate.