diff options
| author | Gerd Moellmann | 2001-08-16 12:55:40 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-08-16 12:55:40 +0000 |
| commit | cca1b1d7ca8d49ebe9e9fd60f8c4aea4c5d5c927 (patch) | |
| tree | c2ae13c3abf05582152617f562eb77673387432b /src | |
| parent | ae13fc3c6fc733d859e3c9364f0c4337f75722bd (diff) | |
| download | emacs-cca1b1d7ca8d49ebe9e9fd60f8c4aea4c5d5c927.tar.gz emacs-cca1b1d7ca8d49ebe9e9fd60f8c4aea4c5d5c927.zip | |
(SYSV): Don't define on Solaris 2.
From Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/xrdb.c | 9 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ed0ecf7fd26..733bde62594 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-08-16 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-08-16 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * xrdb.c (SYSV): Don't define on Solaris 2. | ||
| 4 | From Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>. | ||
| 5 | |||
| 3 | * xdisp.c (move_it_by_lines) <DVPOS < 0>: Start at the beginning | 6 | * xdisp.c (move_it_by_lines) <DVPOS < 0>: Start at the beginning |
| 4 | of the screen line, not text line, containing IT's current | 7 | of the screen line, not text line, containing IT's current |
| 5 | position. | 8 | position. |
diff --git a/src/xrdb.c b/src/xrdb.c index 632e447e851..e51a774dc47 100644 --- a/src/xrdb.c +++ b/src/xrdb.c | |||
| @@ -33,12 +33,15 @@ Boston, MA 02111-1307, USA. */ | |||
| 33 | #include <stdio.h> | 33 | #include <stdio.h> |
| 34 | 34 | ||
| 35 | #if 1 /* I'd really appreciate it if this code could go away... -JimB */ | 35 | #if 1 /* I'd really appreciate it if this code could go away... -JimB */ |
| 36 | /* this avoids lossage in the `dual-universe' headers on AT&T SysV X11 */ | 36 | /* This avoids lossage in the `dual-universe' headers on AT&T SysV |
| 37 | #ifdef USG5 | 37 | X11. Don't do it on Solaris, because it breaks compilation with |
| 38 | XFree86 4.0.3 (and probably many other X11R6 releases) on Solaris | ||
| 39 | 2 */ | ||
| 40 | #if defined(USG5) && !defined(SOLARIS2) | ||
| 38 | #ifndef SYSV | 41 | #ifndef SYSV |
| 39 | #define SYSV | 42 | #define SYSV |
| 40 | #endif | 43 | #endif |
| 41 | #endif /* USG5 */ | 44 | #endif /* USG5 && !SOLARIS2 */ |
| 42 | 45 | ||
| 43 | #endif /* 1 */ | 46 | #endif /* 1 */ |
| 44 | 47 | ||