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.1 / 7.1.316 < prev    next >
Encoding:
Internet Message Format  |  2008-06-19  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.1.316
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.1.316
  11. Problem:    When 'cscopetag' is set ":tag" gives an error message instead of
  12.         going to the next tag in the tag stack.
  13. Solution:   Don't call do_cstag() when there is no argument. (Mark Goldman)
  14. Files:        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. -- 
  47. Microsoft 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    ///
  53.