# HG changeset patch # User Christian Brabandt # Date 1692444605 -7200 # Node ID 7279c963c926084063cf2ce66731013f153ff768 # Parent 229a3b466854848f0c6883cc3051318336cc2532 patch 9.0.1743: Parameter of gui_gtk:gui_mch_browse incorrectly marked as UNUSED Commit: https://github.com/vim/vim/commit/44a6b72d7f4561d4c002f0a8083587ac69222826 Author: Doug Kearns Date: Sat Aug 19 13:13:11 2023 +0200 patch 9.0.1743: Parameter of gui_gtk:gui_mch_browse incorrectly marked as UNUSED Problem: Parameter of gui_gtk:gui_mch_browse incorrectly marked as UNUSED. Solution: Remove UNUSED flag. closes: #12841 Signed-off-by: Christian Brabandt Co-authored-by: Doug Kearns diff --git a/src/gui_gtk.c b/src/gui_gtk.c --- a/src/gui_gtk.c +++ b/src/gui_gtk.c @@ -1239,10 +1239,10 @@ browse_destroy_cb(GtkWidget *widget UNUS * dflt default name * ext not used (extension added) * initdir initial directory, NULL for current dir - * filter not used (file name filter) + * filter file name filter */ char_u * -gui_mch_browse(int saving UNUSED, +gui_mch_browse(int saving, char_u *title, char_u *dflt, char_u *ext UNUSED, diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1743, +/**/ 1742, /**/ 1741,