* xmenu.c (Fmenu_bar_open): Declare variable before BLOCK_INPUT to
avoid gcc 2.95 error.
This commit is contained in:
parent
ffbdf67b4c
commit
8630721ec9
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-11-03 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
|
||||
|
||||
* xmenu.c (Fmenu_bar_open): Declare variable before BLOCK_INPUT to
|
||||
avoid gcc 2.95 error.
|
||||
|
||||
2006-11-03 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* gtkutil.c (update_frame_tool_bar): If icon image is invalid and
|
||||
|
|
|
@ -1395,8 +1395,10 @@ If FRAME is nil or not given, use the selected frame. */)
|
|||
Lisp_Object frame;
|
||||
{
|
||||
GtkWidget *menubar;
|
||||
FRAME_PTR f;
|
||||
|
||||
BLOCK_INPUT;
|
||||
FRAME_PTR f = check_x_frame (frame);
|
||||
f = check_x_frame (frame);
|
||||
|
||||
if (FRAME_EXTERNAL_MENU_BAR (f))
|
||||
set_frame_menubar (f, 0, 1);
|
||||
|
|
Loading…
Add table
Reference in a new issue