# HG changeset patch # User Christian Brabandt # Date 1454359506 -3600 # Node ID fb5ba6fbc843f7a7ade52b0a87b561eee9fc84e8 # Parent 3d770587b41cf520780da40941ac4e8765b5d7ca commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f Author: Bram Moolenaar Date: Mon Feb 1 21:40:14 2016 +0100 patch 7.4.1232 Problem: Compiler warnings when the Sniff feature is enabled. Solution: Add UNUSED. diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -5421,9 +5421,9 @@ input_timer_cb(gpointer data) */ static void sniff_request_cb( - gpointer data, - gint source_fd, - GdkInputCondition condition) + gpointer data UNUSED, + gint source_fd UNUSED, + GdkInputCondition condition UNUSED) { static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF}; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1232, +/**/ 1231, /**/ 1230,