Mercurial > emacs
annotate oldXMenu/SetFrz.c @ 89954:97905c4f1a42
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-24
Merge from lorentey@elte.hu--2004/emacs--hacks--0, emacs--cvs-trunk--0
Patches applied:
* lorentey@elte.hu--2004/emacs--hacks--0--patch-2
Prevent special events from appending dashes to the echo string.
* lorentey@elte.hu--2004/emacs--hacks--0--patch-4
Added ChangeLog entry.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-451
Update from CVS: lisp/subr.el (get-buffer-window-list): Doc fix.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-452
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-454
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-455
Bash the dashes
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-456
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-458
Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sat, 17 Jul 2004 02:46:48 +0000 |
parents | 68c22ea6027c |
children | 2d92f5c9d6ae |
rev | line source |
---|---|
25858 | 1 #include "copyright.h" |
2 | |
3 /* Copyright Massachusetts Institute of Technology 1985 */ | |
4 | |
5 /* | |
6 * XMenu: MIT Project Athena, X Window system menu package | |
7 * | |
8 * XMenuSetFreeze - Forcibly set the menu freeze mode switch | |
9 * overriding the Xdefaults setting. | |
10 * This is necessary in some situations. | |
11 * | |
12 * Author: Tony Della Fera, DEC | |
13 * January 29, 1986 | |
14 * | |
15 */ | |
16 | |
17 #include "XMenuInt.h" | |
18 | |
19 XMenuSetFreeze(menu, freeze) | |
20 register XMenu *menu; /* Menu object to be modified. */ | |
21 register int freeze; /* Freeze mode? */ | |
22 { | |
23 /* | |
24 * Set the freeze mode switch. | |
25 */ | |
26 menu->freeze = freeze; | |
27 } | |
89909 | 28 |
29 /* arch-tag: 69c5670b-3a46-4c78-8fdb-305936d79772 | |
30 (do not change this comment) */ |