# HG changeset patch # User Bram Moolenaar # Date 1591030804 -7200 # Node ID 3e03edae7e6ff0239bc50245821258f7328bdfe3 # Parent 92b4c98fc2289b9aab9126819efcbe48d4e0f9e1 patch 8.2.0879: compiler warning for unused function argument Commit: https://github.com/vim/vim/commit/f9ca08e95ff5b66a02c75334264dd86508b2a453 Author: Bram Moolenaar Date: Mon Jun 1 18:56:03 2020 +0200 patch 8.2.0879: compiler warning for unused function argument Problem: Compiler warning for unused function argument. Solution: Add UNUSED. diff --git a/src/search.c b/src/search.c --- a/src/search.c +++ b/src/search.c @@ -3170,7 +3170,7 @@ update_search_stat( searchstat_T *stat, int recompute, int maxcount, - long timeout) + long timeout UNUSED) { int save_ws = p_ws; int wraparound = FALSE; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 879, +/**/ 878, /**/ 877,