* src/menu.c (x_popup_menu_1): Fix coding style.
This commit is contained in:
parent
0cf3823463
commit
37fad04830
1 changed files with 4 additions and 4 deletions
|
@ -1112,10 +1112,10 @@ Lisp_Object
|
|||
x_popup_menu_1 (Lisp_Object position, Lisp_Object menu)
|
||||
{
|
||||
if (!NILP (Vx_popup_menu_function))
|
||||
return run_hook_with_args (3, ((Lisp_Object[]) {
|
||||
Qx_popup_menu_function, position,
|
||||
menu}),
|
||||
Ffuncall);
|
||||
{
|
||||
Lisp_Object args[] = { Qx_popup_menu_function, position, menu, };
|
||||
return run_hook_with_args (3, args, Ffuncall);
|
||||
}
|
||||
|
||||
Lisp_Object keymap, tem, tem2 = Qnil;
|
||||
int xpos = 0, ypos = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue