|
Karsten Hopp |
287d17 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
287d17 |
Subject: Patch 7.1.284
|
|
Karsten Hopp |
287d17 |
Fcc: outbox
|
|
Karsten Hopp |
287d17 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
287d17 |
Mime-Version: 1.0
|
|
Karsten Hopp |
287d17 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
287d17 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
287d17 |
------------
|
|
Karsten Hopp |
287d17 |
|
|
Karsten Hopp |
287d17 |
Patch 7.1.284
|
|
Karsten Hopp |
287d17 |
Problem: Compiler warnings for functions without prototype.
|
|
Karsten Hopp |
287d17 |
Solution: Add the function prototypes. (Patrick Texier)
|
|
Karsten Hopp |
287d17 |
Files: src/eval.c, src/quickfix.c
|
|
Karsten Hopp |
287d17 |
|
|
Karsten Hopp |
287d17 |
|
|
Karsten Hopp |
287d17 |
*** ../vim-7.1.283/src/eval.c Wed Feb 20 20:09:44 2008
|
|
Karsten Hopp |
287d17 |
--- src/eval.c Sat Mar 15 12:49:14 2008
|
|
Karsten Hopp |
287d17 |
***************
|
|
Karsten Hopp |
287d17 |
*** 14662,14667 ****
|
|
Karsten Hopp |
287d17 |
--- 14662,14669 ----
|
|
Karsten Hopp |
287d17 |
appended_lines_mark(lcount, added);
|
|
Karsten Hopp |
287d17 |
}
|
|
Karsten Hopp |
287d17 |
|
|
Karsten Hopp |
287d17 |
+ static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
|
|
Karsten Hopp |
287d17 |
+
|
|
Karsten Hopp |
287d17 |
/*
|
|
Karsten Hopp |
287d17 |
* Used by "setqflist()" and "setloclist()" functions
|
|
Karsten Hopp |
287d17 |
*/
|
|
Karsten Hopp |
287d17 |
*** ../vim-7.1.283/src/quickfix.c Sat Jan 19 15:55:51 2008
|
|
Karsten Hopp |
287d17 |
--- src/quickfix.c Sat Mar 15 12:51:05 2008
|
|
Karsten Hopp |
287d17 |
***************
|
|
Karsten Hopp |
287d17 |
*** 106,112 ****
|
|
Karsten Hopp |
287d17 |
--- 106,114 ----
|
|
Karsten Hopp |
287d17 |
|
|
Karsten Hopp |
287d17 |
static int qf_init_ext __ARGS((qf_info_T *qi, char_u *efile, buf_T *buf, typval_T *tv, char_u *errorformat, int newlist, linenr_T lnumfirst, linenr_T lnumlast));
|
|
Karsten Hopp |
287d17 |
static void qf_new_list __ARGS((qf_info_T *qi));
|
|
Karsten Hopp |
287d17 |
+ static void ll_free_all __ARGS((qf_info_T **pqi));
|
|
Karsten Hopp |
287d17 |
static int qf_add_entry __ARGS((qf_info_T *qi, qfline_T **prevp, char_u *dir, char_u *fname, int bufnum, char_u *mesg, long lnum, int col, int vis_col, char_u *pattern, int nr, int type, int valid));
|
|
Karsten Hopp |
287d17 |
+ static qf_info_T *ll_new_list __ARGS((void));
|
|
Karsten Hopp |
287d17 |
static void qf_msg __ARGS((qf_info_T *qi));
|
|
Karsten Hopp |
287d17 |
static void qf_free __ARGS((qf_info_T *qi, int idx));
|
|
Karsten Hopp |
287d17 |
static char_u *qf_types __ARGS((int, int));
|
|
Karsten Hopp |
287d17 |
*** ../vim-7.1.283/src/version.c Sun Mar 16 16:02:47 2008
|
|
Karsten Hopp |
287d17 |
--- src/version.c Thu Mar 20 13:21:42 2008
|
|
Karsten Hopp |
287d17 |
***************
|
|
Karsten Hopp |
287d17 |
*** 668,669 ****
|
|
Karsten Hopp |
287d17 |
--- 668,671 ----
|
|
Karsten Hopp |
287d17 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
287d17 |
+ /**/
|
|
Karsten Hopp |
287d17 |
+ 284,
|
|
Karsten Hopp |
287d17 |
/**/
|
|
Karsten Hopp |
287d17 |
|
|
Karsten Hopp |
287d17 |
--
|
|
Karsten Hopp |
287d17 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
287d17 |
160. You get in the elevator and double-click the button for the floor
|
|
Karsten Hopp |
287d17 |
you want.
|
|
Karsten Hopp |
287d17 |
|
|
Karsten Hopp |
287d17 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
287d17 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
287d17 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
287d17 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|