* xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.

This commit is contained in:
Paul Eggert 2012-06-01 13:49:03 -07:00
parent 03fef3e61c
commit 5fceba1d6a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
* xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
For a 'struct window', replace some Lisp_Object fields to

View file

@ -1291,7 +1291,7 @@ x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
FRAME_EXTERNAL_TOOL_BAR (f) = 1;
if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0)
/* Make sure next redisplay shows the tool bar. */
XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = 1;
update_frame_tool_bar (f);
}
else