Mercurial > emacs
annotate src/s/osf1.h @ 10374:d6de68b87cbd
Removed several more gratuitous autoload cookies.
rlogin-initially-track-cwd: Variable deleted.
rlogin-directory-tracking-mode: New variable and function.
Default to 'local.
rlogin-host, rlogin-remote-user: New variables.
rlogin: Set them appropriately.
rlogin-mode-map: Copy shell-mode-map fully if not a list
(in lucid emacs, keymaps are opaque objects).
rlogin-tab-or-complete: New function.
Bind C-i to it.
rlogin-carriage-filter: New function.
rlogin: Add it to comint-output-filter-functions.
rlogin-parse-words: New function.
rlogin: Make buffer name "*rlogin-USER@HOST* if remote user differs from local.
Simplify initialization of local variables, using rlogin-parse-words.
Do not call comint-mode directly.
Doc fixes.
author | Noah Friedman <friedman@splode.com> |
---|---|
date | Tue, 10 Jan 1995 03:14:24 +0000 |
parents | 55b869b080a6 |
children | 34246eb34e98 |
rev | line source |
---|---|
3055 | 1 #include "bsd4-3.h" |
1113 | 2 |
3 /* Identify OSF1 for the m- files. */ | |
4 | |
5 #define OSF1 | |
6 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3055
diff
changeset
|
7 /* Define _BSD to tell the include files we're running under |
1113 | 8 the BSD universe and not the SYSV universe. */ |
9 | |
10 #define C_SWITCH_SYSTEM -D_BSD | |
11 #define LIBS_SYSTEM -lbsd | |
8814
4f3260a22bc8
[__alpha] (LD_SWITCH_SYSTEM): Alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
12 |
9739
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
13 #define read sys_read |
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
14 #define write sys_write |
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
15 #define open sys_open |
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
16 #define close sys_close |
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
17 |
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
18 #define INTERRUPTIBLE_OPEN |
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
19 #define INTERRUPTIBLE_CLOSE |
55b869b080a6
(LD_SWITCH_SYSTEM): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8927
diff
changeset
|
20 #define INTERRUPTIBLE_IO |
1113 | 21 |
22 #define SYSV_SYSTEM_DIR | |
8927
4477436f8ba5
(malloc, realloc): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8814
diff
changeset
|
23 |
4477436f8ba5
(malloc, realloc): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8814
diff
changeset
|
24 /* Declare malloc and realloc in a way that is clean. |
4477436f8ba5
(malloc, realloc): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8814
diff
changeset
|
25 But not in makefiles! */ |
4477436f8ba5
(malloc, realloc): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8814
diff
changeset
|
26 |
4477436f8ba5
(malloc, realloc): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8814
diff
changeset
|
27 #ifndef THIS_IS_YMAKEFILE |
4477436f8ba5
(malloc, realloc): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8814
diff
changeset
|
28 extern void *malloc (), *realloc (); |
4477436f8ba5
(malloc, realloc): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8814
diff
changeset
|
29 #endif |