diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-04-09 15:54:59 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-04-09 15:54:59 -0700 |
commit | 45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193 (patch) | |
tree | 5bc87a8b5a3c754b8eb44a612cc6c03561d6b968 /src/xfns.c | |
parent | 9d6b4d53469a9ffd67bd770fabc6fe254e35c21d (diff) | |
parent | 05920a43fc18e696b464387e781e7cfdcea5b5af (diff) | |
download | emacs-45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193.tar.gz |
Merge from trunk.
Diffstat (limited to 'src/xfns.c')
-rw-r--r-- | src/xfns.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/xfns.c b/src/xfns.c index 4cf4a059a67..2d2ab46fb36 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2952,7 +2952,7 @@ unwind_create_frame (Lisp_Object frame) static Lisp_Object unwind_create_frame_1 (Lisp_Object val) { - inhibit_window_configuration_change_hook = val; + inhibit_lisp_code = val; return Qnil; } @@ -3337,9 +3337,8 @@ This function is an internal primitive--use `make-frame' instead. */) Vframe_list. */ { ptrdiff_t count2 = SPECPDL_INDEX (); - record_unwind_protect (unwind_create_frame_1, - inhibit_window_configuration_change_hook); - inhibit_window_configuration_change_hook = Qt; + record_unwind_protect (unwind_create_frame_1, inhibit_lisp_code); + inhibit_lisp_code = Qt; x_default_parameter (f, parms, Qmenu_bar_lines, NILP (Vmenu_bar_mode) @@ -5919,32 +5918,32 @@ Chinese, Japanese, and Korean. */); /* This is not ifdef:ed, so other builds than GTK can customize it. */ DEFVAR_BOOL ("x-gtk-use-old-file-dialog", x_gtk_use_old_file_dialog, - doc: /* *Non-nil means prompt with the old GTK file selection dialog. + doc: /* Non-nil means prompt with the old GTK file selection dialog. If nil or if the file selection dialog is not available, the new GTK file chooser is used instead. To turn off all file dialogs set the variable `use-file-dialog'. */); x_gtk_use_old_file_dialog = 0; DEFVAR_BOOL ("x-gtk-show-hidden-files", x_gtk_show_hidden_files, - doc: /* *If non-nil, the GTK file chooser will by default show hidden files. + doc: /* If non-nil, the GTK file chooser will by default show hidden files. Note that this is just the default, there is a toggle button on the file chooser to show or not show hidden files on a case by case basis. */); x_gtk_show_hidden_files = 0; DEFVAR_BOOL ("x-gtk-file-dialog-help-text", x_gtk_file_dialog_help_text, - doc: /* *If non-nil, the GTK file chooser will show additional help text. + doc: /* If non-nil, the GTK file chooser will show additional help text. If more space for files in the file chooser dialog is wanted, set this to nil to turn the additional text off. */); x_gtk_file_dialog_help_text = 1; DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", x_gtk_whole_detached_tool_bar, - doc: /* *If non-nil, a detached tool bar is shown in full. + doc: /* If non-nil, a detached tool bar is shown in full. The default is to just show an arrow and pressing on that arrow shows the tool bar buttons. */); x_gtk_whole_detached_tool_bar = 0; DEFVAR_BOOL ("x-gtk-use-system-tooltips", x_gtk_use_system_tooltips, - doc: /* *If non-nil with a Gtk+ built Emacs, the Gtk+ tooltip is used. + doc: /* If non-nil with a Gtk+ built Emacs, the Gtk+ tooltip is used. Otherwise use Emacs own tooltip implementation. When using Gtk+ tooltips, the tooltip face is not used. */); x_gtk_use_system_tooltips = 1; |