Mercurial > emacs
annotate oldXMenu/SetFrz.c @ 83379:23f939241b7d
Merged from miles@gnu.org--gnu-2005 (patch 115, 540-542)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-540
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-541
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-542
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-115
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-419
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Mon, 12 Sep 2005 06:49:54 +0000 |
parents | 532e0a9335a9 |
children | d04d8ccb3c41 |
rev | line source |
---|---|
25858 | 1 #include "copyright.h" |
2 | |
3 /* Copyright Massachusetts Institute of Technology 1985 */ | |
65000
3861ff8f4bf1
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
54770
diff
changeset
|
4 /* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ |
25858 | 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 | |
20 XMenuSetFreeze(menu, freeze) | |
21 register XMenu *menu; /* Menu object to be modified. */ | |
22 register int freeze; /* Freeze mode? */ | |
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) */ |