diff options
author | Tom Tromey <tromey@redhat.com> | 2011-01-18 10:28:28 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-01-18 10:28:28 -0700 |
commit | cab0ba989e31c0ba8272adc1dbb2615f61ecb35f (patch) | |
tree | c1323eeffa778ac52225c85df8d7c4b86d2806b3 /src/gtkutil.h | |
parent | 422745d0bc0a7031231187ecab65812234595944 (diff) | |
download | emacs-cab0ba989e31c0ba8272adc1dbb2615f61ecb35f.tar.gz |
Declare some DEFVARs globally, not locally
* gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
(x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
Declare.
* gtkutil.c (xg_uses_old_file_dialog):
(xg_get_file_with_chooser):
(xg_tool_bar_detach_callback): Don't redeclare globals.
Diffstat (limited to 'src/gtkutil.h')
-rw-r--r-- | src/gtkutil.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gtkutil.h b/src/gtkutil.h index 78df4fe7863..1bc3a1e77ea 100644 --- a/src/gtkutil.h +++ b/src/gtkutil.h @@ -182,6 +182,11 @@ extern void xg_initialize (void); to indicate that the callback should do nothing. */ extern int xg_ignore_gtk_scrollbar; +extern int x_gtk_use_old_file_dialog; +extern int x_gtk_show_hidden_files; +extern int x_gtk_file_dialog_help_text; +extern int x_gtk_whole_detached_tool_bar; + #endif /* USE_GTK */ #endif /* GTKUTIL_H */ |