(menu-bar-edit-menu): Add listp around pending-undo-list to disable
[emacs.git] / oldXMenu / SetFrz.c
blob8e778a66760468cd0835c437cd853adc0c7b311d
1 #include "copyright.h"
3 /* Copyright Massachusetts Institute of Technology 1985 */
4 /* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */
6 /*
7 * XMenu: MIT Project Athena, X Window system menu package
9 * XMenuSetFreeze - Forcibly set the menu freeze mode switch
10 * overriding the Xdefaults setting.
11 * This is necessary in some situations.
13 * Author: Tony Della Fera, DEC
14 * January 29, 1986
18 #include "XMenuInt.h"
20 XMenuSetFreeze(menu, freeze)
21 register XMenu *menu; /* Menu object to be modified. */
22 register int freeze; /* Freeze mode? */
25 * Set the freeze mode switch.
27 menu->freeze = freeze;
30 /* arch-tag: 69c5670b-3a46-4c78-8fdb-305936d79772
31 (do not change this comment) */