|
Karsten Hopp |
d98fa5 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
d98fa5 |
Subject: Patch 7.3.090
|
|
Karsten Hopp |
d98fa5 |
Fcc: outbox
|
|
Karsten Hopp |
d98fa5 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
d98fa5 |
Mime-Version: 1.0
|
|
Karsten Hopp |
d98fa5 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
d98fa5 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
d98fa5 |
------------
|
|
Karsten Hopp |
d98fa5 |
|
|
Karsten Hopp |
d98fa5 |
Patch 7.3.090
|
|
Karsten Hopp |
d98fa5 |
Problem: Wrong help text for Cscope.
|
|
Karsten Hopp |
d98fa5 |
Solution: Adjust the help text for "t". (Dominique Pelle)
|
|
Karsten Hopp |
d98fa5 |
Files: src/if_cscope.c
|
|
Karsten Hopp |
d98fa5 |
|
|
Karsten Hopp |
d98fa5 |
|
|
Karsten Hopp |
d98fa5 |
*** ../vim-7.3.089/src/if_cscope.c 2010-12-17 20:23:56.000000000 +0100
|
|
Karsten Hopp |
d98fa5 |
--- src/if_cscope.c 2010-12-30 11:35:37.000000000 +0100
|
|
Karsten Hopp |
d98fa5 |
***************
|
|
Karsten Hopp |
d98fa5 |
*** 1346,1352 ****
|
|
Karsten Hopp |
d98fa5 |
" g: Find this definition\n"
|
|
Karsten Hopp |
d98fa5 |
" i: Find files #including this file\n"
|
|
Karsten Hopp |
d98fa5 |
" s: Find this C symbol\n"
|
|
Karsten Hopp |
d98fa5 |
! " t: Find assignments to\n"));
|
|
Karsten Hopp |
d98fa5 |
|
|
Karsten Hopp |
d98fa5 |
cmdp++;
|
|
Karsten Hopp |
d98fa5 |
}
|
|
Karsten Hopp |
d98fa5 |
--- 1346,1352 ----
|
|
Karsten Hopp |
d98fa5 |
" g: Find this definition\n"
|
|
Karsten Hopp |
d98fa5 |
" i: Find files #including this file\n"
|
|
Karsten Hopp |
d98fa5 |
" s: Find this C symbol\n"
|
|
Karsten Hopp |
d98fa5 |
! " t: Find this text string\n"));
|
|
Karsten Hopp |
d98fa5 |
|
|
Karsten Hopp |
d98fa5 |
cmdp++;
|
|
Karsten Hopp |
d98fa5 |
}
|
|
Karsten Hopp |
d98fa5 |
***************
|
|
Karsten Hopp |
d98fa5 |
*** 1657,1663 ****
|
|
Karsten Hopp |
d98fa5 |
/*
|
|
Karsten Hopp |
d98fa5 |
* PRIVATE: cs_make_vim_style_matches
|
|
Karsten Hopp |
d98fa5 |
*
|
|
Karsten Hopp |
d98fa5 |
! * convert the cscope output into into a ctags style entry (as might be found
|
|
Karsten Hopp |
d98fa5 |
* in a ctags tags file). there's one catch though: cscope doesn't tell you
|
|
Karsten Hopp |
d98fa5 |
* the type of the tag you are looking for. for example, in Darren Hiebert's
|
|
Karsten Hopp |
d98fa5 |
* ctags (the one that comes with vim), #define's use a line number to find the
|
|
Karsten Hopp |
d98fa5 |
--- 1657,1663 ----
|
|
Karsten Hopp |
d98fa5 |
/*
|
|
Karsten Hopp |
d98fa5 |
* PRIVATE: cs_make_vim_style_matches
|
|
Karsten Hopp |
d98fa5 |
*
|
|
Karsten Hopp |
d98fa5 |
! * convert the cscope output into a ctags style entry (as might be found
|
|
Karsten Hopp |
d98fa5 |
* in a ctags tags file). there's one catch though: cscope doesn't tell you
|
|
Karsten Hopp |
d98fa5 |
* the type of the tag you are looking for. for example, in Darren Hiebert's
|
|
Karsten Hopp |
d98fa5 |
* ctags (the one that comes with vim), #define's use a line number to find the
|
|
Karsten Hopp |
d98fa5 |
*** ../vim-7.3.089/src/version.c 2010-12-24 14:00:09.000000000 +0100
|
|
Karsten Hopp |
d98fa5 |
--- src/version.c 2010-12-30 11:36:33.000000000 +0100
|
|
Karsten Hopp |
d98fa5 |
***************
|
|
Karsten Hopp |
d98fa5 |
*** 716,717 ****
|
|
Karsten Hopp |
d98fa5 |
--- 716,719 ----
|
|
Karsten Hopp |
d98fa5 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
d98fa5 |
+ /**/
|
|
Karsten Hopp |
d98fa5 |
+ 90,
|
|
Karsten Hopp |
d98fa5 |
/**/
|
|
Karsten Hopp |
d98fa5 |
|
|
Karsten Hopp |
d98fa5 |
--
|
|
Karsten Hopp |
d98fa5 |
ERROR 047: Keyboard not found. Press RETURN to continue.
|
|
Karsten Hopp |
d98fa5 |
|
|
Karsten Hopp |
d98fa5 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
d98fa5 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
d98fa5 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
d98fa5 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|