diff options
| author | Jan Djärv | 2006-09-16 17:43:35 +0000 |
|---|---|---|
| committer | Jan Djärv | 2006-09-16 17:43:35 +0000 |
| commit | 641c0105e5eff1110b0119ac3df674992f2a892e (patch) | |
| tree | 383db9593216def103742190a6a17ab7c5ed874f /src | |
| parent | cf1e295ff572f813a19fd6cc1f71e1565954502d (diff) | |
| download | emacs-641c0105e5eff1110b0119ac3df674992f2a892e.tar.gz emacs-641c0105e5eff1110b0119ac3df674992f2a892e.zip | |
* xfns.c (syms_of_xfns): New variable: x-gtk-show-chooser-help-text.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index 2bb4310e437..ea6d43f649f 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -158,6 +158,10 @@ int x_use_old_gtk_file_dialog; | |||
| 158 | 158 | ||
| 159 | int x_gtk_show_hidden_files; | 159 | int x_gtk_show_hidden_files; |
| 160 | 160 | ||
| 161 | /* If non-zero, don't show additional help text in the GTK file chooser. */ | ||
| 162 | |||
| 163 | int x_gtk_show_chooser_help_text; | ||
| 164 | |||
| 161 | /* If non-zero, don't collapse to tool bar when it is detached. */ | 165 | /* If non-zero, don't collapse to tool bar when it is detached. */ |
| 162 | 166 | ||
| 163 | int x_gtk_whole_detached_tool_bar; | 167 | int x_gtk_whole_detached_tool_bar; |
| @@ -5814,6 +5818,12 @@ Note that this is just the default, there is a toggle button on the file | |||
| 5814 | chooser to show or not show hidden files on a case by case basis. */); | 5818 | chooser to show or not show hidden files on a case by case basis. */); |
| 5815 | x_gtk_show_hidden_files = 0; | 5819 | x_gtk_show_hidden_files = 0; |
| 5816 | 5820 | ||
| 5821 | DEFVAR_BOOL ("x-gtk-show-chooser-help-text", &x_gtk_show_chooser_help_text, | ||
| 5822 | doc: /* *If non-nil, the GTK file chooser will by show additional help text. | ||
| 5823 | If more space for files in the file chooser dialog is wanted, set this to nil | ||
| 5824 | to turn the additional text off. */); | ||
| 5825 | x_gtk_show_chooser_help_text = 1; | ||
| 5826 | |||
| 5817 | DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar, | 5827 | DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar, |
| 5818 | doc: /* *If non-nil, a detached tool bar is shown in full. | 5828 | doc: /* *If non-nil, a detached tool bar is shown in full. |
| 5819 | The default is to just show an arrow and pressing on that arrow shows | 5829 | The default is to just show an arrow and pressing on that arrow shows |