Mercurial > emacs
annotate src/getpagesize.h @ 16255:dcde843403a3
(display_mode_line): Use faces for inverse video mode line whenever possible.
(echo_area_display): Shift display_string past a left-side scroll bar.
(redisplay_window): Likewise.
(redisplay_internal): Shift cursor past a left-side scroll bar.
(redisplay_window): Likewise.
(try_window_id): Likewise.
(display_text_line): Likewise.
(redisplay_internal): Shift charstarts past a left-side scroll bar.
(display_text_line): Likewise.
(redisplay_internal): Use new macro WINDOW_FULL_WIDTH_P.
(redisplay_window): Likewise.
(display_text_line): Likewise.
(display_text_line): Shift output past left-side scroll bar.
(display_text_line): Use new WINDOW_RIGHTMOST_P macro.
(display_text_line): Don't pad right columns unless using
a right-side scroll bar. Don't draw vertical bars unless there
isn't any kind of scroll bar.
(display_string): Likewise.
(display_mode_line): Use new macros WINDOW_LEFT_MARGIN,
WINDOW_RIGHT_MARGIN, and WINDOW_FULL_WIDTH_P.
(display_string): Use new macro WINDOW_RIGHTMOST_P.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 21 Sep 1996 01:16:33 +0000 |
parents | 44ebc50db2c5 |
children | ae726fd5403b |
rev | line source |
---|---|
4356 | 1 /* Emulate getpagesize on systems that lack it. */ |
2 | |
3 #ifndef HAVE_GETPAGESIZE | |
4 | |
5 #ifdef VMS | |
6 #define getpagesize() 512 | |
7 #endif | |
8 | |
9 #ifdef HAVE_UNISTD_H | |
10 #include <unistd.h> | |
11 #endif | |
12 | |
13 #ifdef _SC_PAGESIZE | |
14 #define getpagesize() sysconf(_SC_PAGESIZE) | |
15 #else | |
16 | |
17 #include <sys/param.h> | |
18 | |
19 #ifdef EXEC_PAGESIZE | |
20 #define getpagesize() EXEC_PAGESIZE | |
21 #else | |
22 #ifdef NBPG | |
23 #define getpagesize() NBPG * CLSIZE | |
24 #ifndef CLSIZE | |
25 #define CLSIZE 1 | |
26 #endif /* no CLSIZE */ | |
27 #else /* no NBPG */ | |
28 #ifdef NBPC | |
29 #define getpagesize() NBPC | |
9421 | 30 #else /* no NBPC */ |
31 #ifdef PAGESIZE | |
32 #define getpagesize() PAGESIZE | |
33 #endif | |
4356 | 34 #endif /* NBPC */ |
35 #endif /* no NBPG */ | |
36 #endif /* no EXEC_PAGESIZE */ | |
37 #endif /* no _SC_PAGESIZE */ | |
38 | |
39 #endif /* not HAVE_GETPAGESIZE */ |