mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.3.1135
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
This commit is contained in:
@@ -3258,7 +3258,7 @@ syn_regexec(rmp, lnum, col, st)
|
|||||||
regmmatch_T *rmp;
|
regmmatch_T *rmp;
|
||||||
linenr_T lnum;
|
linenr_T lnum;
|
||||||
colnr_T col;
|
colnr_T col;
|
||||||
syn_time_T *st;
|
syn_time_T *st UNUSED;
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
#ifdef FEAT_PROFILE
|
#ifdef FEAT_PROFILE
|
||||||
@@ -6649,7 +6649,8 @@ syntime_report()
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* sort on total time */
|
/* sort on total time */
|
||||||
qsort(ga.ga_data, (size_t)ga.ga_len, sizeof(time_entry_T), syn_compare_syntime);
|
qsort(ga.ga_data, (size_t)ga.ga_len, sizeof(time_entry_T),
|
||||||
|
syn_compare_syntime);
|
||||||
|
|
||||||
MSG_PUTS_TITLE(_(" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"));
|
MSG_PUTS_TITLE(_(" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN"));
|
||||||
MSG_PUTS("\n");
|
MSG_PUTS("\n");
|
||||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1135,
|
||||||
/**/
|
/**/
|
||||||
1134,
|
1134,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user