# HG changeset patch # User Bram Moolenaar # Date 1298643350 -3600 # Node ID 464da5b48d277d1052e3c211000717947fa13da6 # Parent d20d37ef86c8844da2c9c45b2d9fc8b6a2dc3f78 updated for version 7.3.130 Problem: Variable misplaced in #ifdef. Solution: Move clipboard_event_time outside of #ifdef. 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 @@ -86,8 +86,9 @@ extern void bonobo_dock_item_set_behavio #ifdef HAVE_X11_SUNKEYSYM_H # include +#endif + static guint32 clipboard_event_time = CurrentTime; -#endif /* * Easy-to-use macro for multihead support. @@ -5419,7 +5420,7 @@ gui_mch_wait_for_chars(long wtime) } #if defined(FEAT_NETBEANS_INTG) - /* Process the queued netbeans messages. */ + /* Process any queued netbeans messages. */ netbeans_parse_messages(); #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 130, +/**/ 129, /**/ 128,