mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.3.542
Problem: Function is sometimes unused. Solution: Add #ifdef.
This commit is contained in:
parent
8134039744
commit
08bc274e88
@ -90,11 +90,13 @@ typedef int GtkWidget;
|
||||
static void entry_activate_cb(GtkWidget *widget, gpointer data);
|
||||
static void entry_changed_cb(GtkWidget *entry, GtkWidget *dialog);
|
||||
static void find_replace_cb(GtkWidget *widget, gpointer data);
|
||||
#if defined(FEAT_BROWSE) || defined(PROTO)
|
||||
static void recent_func_log_func(
|
||||
const gchar *log_domain,
|
||||
GLogLevelFlags log_level,
|
||||
const gchar *message,
|
||||
gpointer user_data);
|
||||
#endif
|
||||
|
||||
#if defined(FEAT_TOOLBAR)
|
||||
/*
|
||||
@ -1896,6 +1898,7 @@ ex_helpfind(eap)
|
||||
do_cmdline_cmd((char_u *)"emenu ToolBar.FindHelp");
|
||||
}
|
||||
|
||||
#if defined(FEAT_BROWSE) || defined(PROTO)
|
||||
static void
|
||||
recent_func_log_func(const gchar *log_domain UNUSED,
|
||||
GLogLevelFlags log_level UNUSED,
|
||||
@ -1905,4 +1908,4 @@ recent_func_log_func(const gchar *log_domain UNUSED,
|
||||
/* We just want to suppress the warnings. */
|
||||
/* http://bugzilla.gnome.org/show_bug.cgi?id=664587 */
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
542,
|
||||
/**/
|
||||
541,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user