Mercurial > emacs
annotate src/s/netbsd.h @ 5284:9c8749be37da
(comint-read-input-ring): New arg SILENT.
(comint-replace-by-expanded-history): New arg SILENT.
(comint-send-input): Pass t as new arg.
(comint-mode-map): Put comint-show-output on C-M-l.
(comint-preinput-scroll-to-bottom): Removed calls to
window-minibuffer-p and 'not-minibuf arg to walk-windows.
Removed mouse-yank-at-click from command list and doc string.
Removed duplicate test for comint-scroll-to-bottom-on-input (scroll).
Removed test for 'this within walk-windows code.
(comint-postoutput-scroll-to-bottom):
Don't select a different buffer permanently.
(comint-prompt-regexp): Fixed documentation.
(comint-replace-by-expanded-history):
Use skip-chars-forward to advance in main loop.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 23 Dec 1993 03:39:27 +0000 |
parents | d14a87abdb46 |
children | 37ea8707b175 |
rev | line source |
---|---|
4690 | 1 /* s/ file for netbsd system. */ |
2 | |
3 /* Get most of the stuff from bsd4.3 */ | |
4 #include "bsd4-3.h" | |
5 | |
6 #undef SYSTEM_TYPE | |
7 #define SYSTEM_TYPE "netbsd" | |
8 | |
9 #undef KERNEL_FILE | |
10 #define KERNEL_FILE "/netbsd" | |
11 | |
12 #undef LDAV_SYMBOL | |
13 #define LDAV_SYMBOL "_averunnable" | |
14 | |
15 #define SIGNALS_VIA_CHARACTERS | |
16 | |
17 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base) | |
18 | |
19 #define A_TEXT_OFFSET(x) (sizeof (struct exec)) | |
20 #define A_TEXT_SEEK(hdr) (N_TXTOFF(hdr) + A_TEXT_OFFSET(hdr)) | |
21 | |
22 #define HAVE_SETSID | |
23 | |
24 #define LIBS_DEBUG | |
25 #define LIBS_SYSTEM -lutil | |
26 | |
27 #define HAVE_GETLOADAVG | |
28 | |
29 /* For mem-limits.h. */ | |
30 #define BSD4_2 |