Mercurial > hg > xemacs-beta
annotate src/m/alliant4.h @ 1703:f561c3904bb3
[xemacs-hg @ 2003-09-20 01:46:53 by youngs]
2003-09-20 Ilya N. Golubev <gin@mo.msk.ru>
* simple.el (raw-append-message): Allow user to specify
alternative function for displaying message.
(redisplay-echo-area-function): New.
(clear-message): Allow user to specify function for finishing
message display.
(undisplay-echo-area-function): New.
2003-09-20 Ilya N. Golubev <gin@mo.msk.ru>
* xemacs/mini.texi (Minibuffer): Add customizing message display
reference.
* lispref/display.texi (Customizing Message Display): New,
describe `redisplay-echo-area-function',
`undisplay-echo-area-function', `minibuffer-echo-wait-function'.
(The Echo Area): Add menu.
2003-09-20 Ilya N. Golubev <gin@mo.msk.ru>
* cmdloop.c (Fcommand_loop_1): Allow specifying elisp function for
waiting user input while displaying message while in minibuffer.
(Vminibuffer_echo_wait_function): New, associated variable...
(vars_of_cmdloop): ... initialize it.
author | youngs |
---|---|
date | Sat, 20 Sep 2003 01:47:03 +0000 |
parents | 376386a54a3c |
children |
rev | line source |
---|---|
0 | 1 /* Synched up with: FSF 19.31. */ |
2 | |
3 /* machine description file for Alliant Concentrix 4.0 or later. | |
4 Use alliant.h for versions 2 and 3. */ | |
5 | |
6 /* The following line tells the configuration script what sort of | |
7 operating system this machine is likely to run. | |
8 USUAL-OPSYS="bsd4-2" */ | |
9 | |
10 #include "alliant.h" | |
11 | |
12 /* Concentrix uses a different kernel symbol for load average. */ | |
13 | |
14 #undef LDAV_SYMBOL /* Undo definition in s-bsd4-2.h */ | |
15 #define LDAV_SYMBOL "_Loadavg" | |
16 | |
17 /* Data type of load average, as read out of kmem. */ | |
18 | |
19 #define LOAD_AVE_TYPE long | |
20 | |
21 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
22 | |
23 #define LOAD_AVE_CVT(x) (x * 100 / LOADAVG_SCALE) | |
24 | |
25 /* include <sys/param.h> for the definition of LOADAVG_SCALE, and also | |
26 LOADAVG_SIZE, the number of items in the Loadavg array. */ |