diff options
author | Dave Love <fx@gnu.org> | 1999-10-03 19:36:13 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-10-03 19:36:13 +0000 |
commit | e745ede7473e87b93d71858bc1c8447a1307de28 (patch) | |
tree | 59353dca94fcb3a9ce2fd9f79614a3119da7f863 /oldXMenu/EvHand.c | |
parent | 0c898dd963a3277b5ec8d59f0a350e3fb50e50c3 (diff) | |
download | emacs-e745ede7473e87b93d71858bc1c8447a1307de28.tar.gz |
#
Diffstat (limited to 'oldXMenu/EvHand.c')
-rw-r--r-- | oldXMenu/EvHand.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/oldXMenu/EvHand.c b/oldXMenu/EvHand.c new file mode 100644 index 00000000000..375ea44841f --- /dev/null +++ b/oldXMenu/EvHand.c @@ -0,0 +1,26 @@ +#include "copyright.h" + +/* $Header: /u/src/emacs/19.0/oldXMenu/RCS/EvHand.c,v 1.1 1992/04/11 22:10:19 jimb Exp $ */ +/* Copyright Massachusetts Institute of Technology 1985 */ + +/* + * XMenu: MIT Project Athena, X Window system menu package + * + * XMenuEventHandler - Set the XMenu asynchronous event handler. + * + * Author: Tony Della Fera, DEC + * December 19, 1985 + * + */ + +#include "XMenuInt.h" + +XMenuEventHandler(handler) + int (*handler)(); +{ + /* + * Set the global event handler variable. + */ + _XMEventHandler = handler; +} + |