Merge from emacs-24; up to 2012-12-14T15:38:50Z!monnier@iro.umontreal.ca
[bpt/emacs.git] / oldXMenu / SetFrz.c
CommitLineData
2cd3138f
GM
1/* Copyright Massachusetts Institute of Technology 1985 */
2
e745ede7
DL
3#include "copyright.h"
4
e745ede7
DL
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
55660072 20void
b782e2d7
DN
21XMenuSetFreeze(register XMenu *menu, register int freeze)
22 /* Menu object to be modified. */
23 /* Freeze mode? */
e745ede7
DL
24{
25 /*
26 * Set the freeze mode switch.
27 */
28 menu->freeze = freeze;
29}