Mercurial > emacs
annotate oldXMenu/EvHand.c @ 98808:8ed760341617
(define-abbrev): Doc fix.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Fri, 17 Oct 2008 21:25:58 +0000 |
parents | fec5e03aaf59 |
children | edf631bdbb7a ec58e5c426ef 5cc91198ffb2 |
rev | line source |
---|---|
76174
fec5e03aaf59
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
1 /* Copyright Massachusetts Institute of Technology 1985 */ |
fec5e03aaf59
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
2 |
25858 | 3 #include "copyright.h" |
4 | |
5 | |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuEventHandler - Set the XMenu asynchronous event handler. | |
10 * | |
11 * Author: Tony Della Fera, DEC | |
12 * December 19, 1985 | |
13 * | |
14 */ | |
15 | |
16 #include "XMenuInt.h" | |
17 | |
18 XMenuEventHandler(handler) | |
19 int (*handler)(); | |
20 { | |
21 /* | |
22 * Set the global event handler variable. | |
23 */ | |
24 _XMEventHandler = handler; | |
25 } | |
26 | |
52401 | 27 /* arch-tag: 8d614c8c-94d9-43c8-8e32-c438a3c8a8a3 |
28 (do not change this comment) */ |