diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-02-25 15:15:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-02-25 15:15:50 +0100 |
commit | ede547afcf631fc88990dccd078142db0b43b424 (patch) | |
tree | e3a2aeb990afc6c5d598d67fe64f6dc489ca8c02 /src/gui_gtk_x11.c | |
parent | 128773b21d70ef9112d21e16f20e90da4dc08fb6 (diff) | |
download | vim-git-ede547afcf631fc88990dccd078142db0b43b424.tar.gz |
updated for version 7.3.130v7.3.130
Problem: Variable misplaced in #ifdef.
Solution: Move clipboard_event_time outside of #ifdef.
Diffstat (limited to 'src/gui_gtk_x11.c')
-rw-r--r-- | src/gui_gtk_x11.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index f148ff7ee..5c6e831a7 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -86,9 +86,10 @@ extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockI #ifdef HAVE_X11_SUNKEYSYM_H # include <X11/Sunkeysym.h> -static guint32 clipboard_event_time = CurrentTime; #endif +static guint32 clipboard_event_time = CurrentTime; + /* * 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 |