mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -04:00
patch 7.4.1232
Problem: Compiler warnings when the Sniff feature is enabled. Solution: Add UNUSED.
This commit is contained in:
@@ -5421,9 +5421,9 @@ input_timer_cb(gpointer data)
|
|||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
sniff_request_cb(
|
sniff_request_cb(
|
||||||
gpointer data,
|
gpointer data UNUSED,
|
||||||
gint source_fd,
|
gint source_fd UNUSED,
|
||||||
GdkInputCondition condition)
|
GdkInputCondition condition UNUSED)
|
||||||
{
|
{
|
||||||
static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF};
|
static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF};
|
||||||
|
|
||||||
|
@@ -742,6 +742,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 */
|
||||||
|
/**/
|
||||||
|
1232,
|
||||||
/**/
|
/**/
|
||||||
1231,
|
1231,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user