|
Karsten Hopp |
2d903e |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
2d903e |
Subject: Patch 7.4.544
|
|
Karsten Hopp |
2d903e |
Fcc: outbox
|
|
Karsten Hopp |
2d903e |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
2d903e |
Mime-Version: 1.0
|
|
Karsten Hopp |
2d903e |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
2d903e |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
2d903e |
------------
|
|
Karsten Hopp |
2d903e |
|
|
Karsten Hopp |
2d903e |
Patch 7.4.544
|
|
Karsten Hopp |
2d903e |
Problem: Warnings for unused arguments when compiling with a combination of
|
|
Karsten Hopp |
2d903e |
features.
|
|
Karsten Hopp |
2d903e |
Solution: Add "UNUSED".
|
|
Karsten Hopp |
2d903e |
Files: src/if_cscope.c
|
|
Karsten Hopp |
2d903e |
|
|
Karsten Hopp |
2d903e |
|
|
Karsten Hopp |
2d903e |
*** ../vim-7.4.543/src/if_cscope.c 2013-06-30 14:59:21.000000000 +0200
|
|
Karsten Hopp |
2d903e |
--- src/if_cscope.c 2014-11-30 13:19:06.699741651 +0100
|
|
Karsten Hopp |
2d903e |
***************
|
|
Karsten Hopp |
2d903e |
*** 1131,1138 ****
|
|
Karsten Hopp |
2d903e |
char *pat;
|
|
Karsten Hopp |
2d903e |
int forceit;
|
|
Karsten Hopp |
2d903e |
int verbose;
|
|
Karsten Hopp |
2d903e |
! int use_ll;
|
|
Karsten Hopp |
2d903e |
! char_u *cmdline;
|
|
Karsten Hopp |
2d903e |
{
|
|
Karsten Hopp |
2d903e |
int i;
|
|
Karsten Hopp |
2d903e |
char *cmd;
|
|
Karsten Hopp |
2d903e |
--- 1131,1138 ----
|
|
Karsten Hopp |
2d903e |
char *pat;
|
|
Karsten Hopp |
2d903e |
int forceit;
|
|
Karsten Hopp |
2d903e |
int verbose;
|
|
Karsten Hopp |
2d903e |
! int use_ll UNUSED;
|
|
Karsten Hopp |
2d903e |
! char_u *cmdline UNUSED;
|
|
Karsten Hopp |
2d903e |
{
|
|
Karsten Hopp |
2d903e |
int i;
|
|
Karsten Hopp |
2d903e |
char *cmd;
|
|
Karsten Hopp |
2d903e |
*** ../vim-7.4.543/src/version.c 2014-12-13 03:17:07.465046539 +0100
|
|
Karsten Hopp |
2d903e |
--- src/version.c 2014-12-13 03:19:54.743238147 +0100
|
|
Karsten Hopp |
2d903e |
***************
|
|
Karsten Hopp |
2d903e |
*** 743,744 ****
|
|
Karsten Hopp |
2d903e |
--- 743,746 ----
|
|
Karsten Hopp |
2d903e |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
2d903e |
+ /**/
|
|
Karsten Hopp |
2d903e |
+ 544,
|
|
Karsten Hopp |
2d903e |
/**/
|
|
Karsten Hopp |
2d903e |
|
|
Karsten Hopp |
2d903e |
--
|
|
Karsten Hopp |
2d903e |
At some point in the project somebody will start whining about the need to
|
|
Karsten Hopp |
2d903e |
determine the project "requirements". This involves interviewing people who
|
|
Karsten Hopp |
2d903e |
don't know what they want but, curiously, know exactly when they need it.
|
|
Karsten Hopp |
2d903e |
(Scott Adams - The Dilbert principle)
|
|
Karsten Hopp |
2d903e |
|
|
Karsten Hopp |
2d903e |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
2d903e |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
2d903e |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
2d903e |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|