Mercurial > emacs
annotate src/m/alliant4.h @ 24985:e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
definitions for `top-line'.
(mode-line-format): Replace `mode-name' with
`(:eval mode-line-mode-name)'.
(mode-line-mode-name): New.
(make-mode-line-mouse-sensitive): Don't change default value
of `mode-name'.
(make-mode-line-mouse-sensitive): Use down-mouse-3
instead of mouse-3 to pop up menus.
(make-mode-line-mouse-sensitive): Pop mouse buffer menu over
buffer name.
(mode-line-buffer-menu-1): Removed.
(mode-line-buffer-identification-keymap): New.
(mode-line-buffer-menu-keymap): New.
(mode-line-mode-menu-keymap): New.
(mode-line-unbury-buffer): New.
(mode-line-other-buffer): New.
(mode-line-buffer-menu-1): New.
(mode-line-mode-menu-1): New.
(make-mode-line-mouse-sensitive): New.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 21 Jul 1999 21:43:03 +0000 |
parents | e442bb589751 |
children | 23a1cea22d13 |
rev | line source |
---|---|
457 | 1 /* machine description file for Alliant Concentrix 4.0 or later. |
2 Use alliant.h for versions 2 and 3. */ | |
3 | |
4 /* The following line tells the configuration script what sort of | |
5 operating system this machine is likely to run. | |
6 USUAL-OPSYS="bsd4-2" */ | |
7 | |
8 #include "alliant.h" | |
9 | |
10 /* Concentrix uses a different kernel symbol for load average. */ | |
11 | |
12 #undef LDAV_SYMBOL /* Undo definition in s-bsd4-2.h */ | |
13 #define LDAV_SYMBOL "_Loadavg" | |
14 | |
15 /* Data type of load average, as read out of kmem. */ | |
16 | |
17 #define LOAD_AVE_TYPE long | |
18 | |
19 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
20 | |
21 #define LOAD_AVE_CVT(x) (x * 100 / LOADAVG_SCALE) | |
22 | |
23 /* include <sys/param.h> for the definition of LOADAVG_SCALE, and also | |
24 LOADAVG_SIZE, the number of items in the Loadavg array. */ |