annotate oldXMenu/SetFrz.c @ 55994:d5ff6c629c22
(dired-diff, dired-backup-diff)
(dired-clean-directory, dired-do-chmod, dired-do-chgrp)
(dired-do-chown, dired-do-touch, dired-do-print)
(dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
(dired-do-byte-compile, dired-do-load, dired-do-redisplay)
(dired-create-directory, dired-do-copy, dired-do-symlink)
(dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
(dired-do-copy-regexp, dired-do-hardlink-regexp)
(dired-do-symlink-regexp, dired-upcase, dired-downcase)
(dired-maybe-insert-subdir, dired-next-subdir)
(dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
(dired-kill-subdir, dired-tree-up, dired-tree-down)
(dired-hide-subdir, dired-hide-all, dired-show-file-type)
(dired-run-shell-command, dired-query):
Remove redundant (or incorrect) autoloads.
author |
Luc Teirlinck <teirllm@auburn.edu> |
date |
Wed, 09 Jun 2004 01:10:14 +0000 |
parents |
e8824c4f5f7e |
children |
3861ff8f4bf1 8e5779acd195 |
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 }
|
52401
|
28
|
|
29 /* arch-tag: 69c5670b-3a46-4c78-8fdb-305936d79772
|
|
30 (do not change this comment) */
|