annotate src/s/sol2-3.h @ 8276:73b85998c868

type-break-mode: Make variable `nil' by default. type-break-mode (function): If setting to t and mode was already enabled, don't reschedule breaks or reset keystroke counter. type-break-good-rest-interval: New variable. type-break-time-difference: New inline function (defsubst). tyype-break-time-last-break, type-break-time-next-break, type-break-time-last-command: New variables. type-break-check: Reset timers and counters if user has been idle more than type-break-good-rest-interval seconds (assuming it's set). Never set keystroke counter to be less than the min threshold. type-break: Admonish user if s/he rested less than type-break-good-rest-interval seconds (assuming it's set). type-break-demo-hanoi: Eat a char when quitting. type-break-statistics, type-break-guestimate-keystroke-threshold: New commands.
author Noah Friedman <friedman@splode.com>
date Mon, 18 Jul 1994 15:21:50 +0000
parents 55588e31b258
children d11ec52807d6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6840
25bdc55196ad Fix #include file name.
Richard M. Stallman <rms@gnu.org>
parents: 6104
diff changeset
1 #include "sol2.h"
5227
abf17036eb91 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
abf17036eb91 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 /* Solaris 2.3 has a bug in XListFontsWithInfo. */
abf17036eb91 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 #define BROKEN_XLISTFONTSWITHINFO
6104
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
5
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
6 /* Override LD_SWITCH_SYSTEM: add -L /usr/ccs/lib to the sol2.h value. */
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
7
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
8 #undef LD_SWITCH_SYSTEM
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
9
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
10 #ifndef __GNUC__
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
11 #define LD_SWITCH_SYSTEM -L /usr/ccs/lib LD_SWITCH_X_SITE_AUX
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
12 #else /* GCC */
7356
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6840
diff changeset
13 /* We use ./prefix-args because we don't know whether LD_SWITCH_X_SITE_AUX
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6840
diff changeset
14 has anything in it. It can be empty.
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6840
diff changeset
15 This works ok in src. Luckily lib-src does not use LD_SWITCH_SYSTEM. */
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6840
diff changeset
16 #define LD_SWITCH_SYSTEM -L /usr/ccs/lib \
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6840
diff changeset
17 `./prefix-args -Xlinker LD_SWITCH_X_SITE_AUX`
6104
44fc65a7fc46 (LD_SWITCH_SYSTEM): New definitions, with #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5227
diff changeset
18 #endif /* GCC */