Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
46b657e2
Commit
46b657e2
authored
Mar 26, 1995
by
Richard M. Stallman
Browse files
(Fx_popup_menu): Pass 1 for `insist' arg.
(Fx_popup_dialog): Likewise.
parent
fadfaf55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/xmenu.c
src/xmenu.c
+3
-2
No files found.
src/xmenu.c
View file @
46b657e2
...
...
@@ -732,7 +732,8 @@ cached information about equivalent key sequences.")
unsigned
long
time
;
if
(
mouse_position_hook
)
(
*
mouse_position_hook
)
(
&
new_f
,
&
bar_window
,
&
part
,
&
x
,
&
y
,
&
time
);
(
*
mouse_position_hook
)
(
&
new_f
,
1
,
&
bar_window
,
&
part
,
&
x
,
&
y
,
&
time
);
if
(
new_f
!=
0
)
XSETFRAME
(
window
,
new_f
);
else
...
...
@@ -922,7 +923,7 @@ on the left of the dialog box and all following items on the right.\n\
unsigned long time;
Lisp_Object x, y;
(*mouse_position_hook) (&new_f, &bar_window, &part, &x, &y, &time);
(*mouse_position_hook) (&new_f,
1,
&bar_window, &part, &x, &y, &time);
if (new_f != 0)
XSETFRAME (window, new_f);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment