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
0e43e014
Commit
0e43e014
authored
Jul 04, 1996
by
Miles Bader
Browse files
(lw_toolkit_related_event_p): A predicate to identify toolkit-specific events.
parent
7f76dcc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
lwlib/lwlib.c
lwlib/lwlib.c
+13
-0
No files found.
lwlib/lwlib.c
View file @
0e43e014
...
...
@@ -1379,3 +1379,16 @@ lw_allow_resizing (w, flag)
xm_manage_resizing (w, flag);
#endif
}
/* Check to see if event should be ignored by Emacs */
Boolean
lw_toolkit_related_event_p (event)
XEvent *event;
{
#if defined (USE_MOTIF)
return lw_motif_menu_related_event_p (event);
#else
return False;
#endif
}
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