Mercurial > emacs
annotate oldXMenu/SetFrz.c @ 111732:6098376da331
color.el: Rename various rgb functions to srgb.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Fri, 26 Nov 2010 11:19:00 +0000 |
parents | 5cc91198ffb2 |
children | ef719132ddfa |
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 * XMenuSetFreeze - Forcibly set the menu freeze mode switch | |
10 * overriding the Xdefaults setting. | |
11 * This is necessary in some situations. | |
12 * | |
13 * Author: Tony Della Fera, DEC | |
14 * January 29, 1986 | |
15 * | |
16 */ | |
17 | |
18 #include "XMenuInt.h" | |
19 | |
109124
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76174
diff
changeset
|
20 XMenuSetFreeze(register XMenu *menu, register int freeze) |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76174
diff
changeset
|
21 /* Menu object to be modified. */ |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76174
diff
changeset
|
22 /* Freeze mode? */ |
25858 | 23 { |
24 /* | |
25 * Set the freeze mode switch. | |
26 */ | |
27 menu->freeze = freeze; | |
28 } | |
52401 | 29 |
30 /* arch-tag: 69c5670b-3a46-4c78-8fdb-305936d79772 | |
31 (do not change this comment) */ |