rpms/vim/devel 7.1.316,NONE,1.1

Karsten Hopp (karsten) fedora-extras-commits at redhat.com
Fri Jul 18 11:37:14 UTC 2008


Author: karsten

Update of /cvs/extras/rpms/vim/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv8248

Added Files:
	7.1.316 
Log Message:
- patchlevel 316


--- NEW FILE 7.1.316 ---
To: vim-dev at vim.org
Subject: Patch 7.1.316
Fcc: outbox
From: Bram Moolenaar <Bram at moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
------------

Patch 7.1.316
Problem:    When 'cscopetag' is set ":tag" gives an error message instead of
	    going to the next tag in the tag stack.
Solution:   Don't call do_cstag() when there is no argument. (Mark Goldman)
Files:	    src/ex_docmd.c


*** ../vim-7.1.315/src/ex_docmd.c	Sun Mar 16 16:02:47 2008
--- src/ex_docmd.c	Fri Jun 20 10:42:30 2008
***************
*** 9300,9306 ****
  		  break;
  	default:			/* ":tag" */
  #ifdef FEAT_CSCOPE
! 		  if (p_cst)
  		  {
  		      do_cstag(eap);
  		      return;
--- 9302,9308 ----
  		  break;
  	default:			/* ":tag" */
  #ifdef FEAT_CSCOPE
! 		  if (p_cst && *eap->arg != NUL)
  		  {
  		      do_cstag(eap);
  		      return;
*** ../vim-7.1.315/src/version.c	Sun Jun 15 14:20:28 2008
--- src/version.c	Fri Jun 20 11:09:35 2008
***************
*** 668,669 ****
--- 673,676 ----
  {   /* Add new patch number below this line */
+ /**/
+     316,
  /**/

-- 
Microsoft is to software what McDonalds is to gourmet cooking

 /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\        download, build and distribute -- http://www.A-A-P.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///




More information about the scm-commits mailing list