diff options
| author | David Jones | 2007-03-09 09:35:31 +0000 |
|---|---|---|
| committer | David Jones | 2007-03-09 09:35:31 +0000 |
| commit | 8ac9a23ede7da02e0fb3eed8b32d8dedc585eb44 (patch) | |
| tree | e5d5c4c47321759da007d985bc57d5da3dfd0ef8 /mps/code | |
| parent | 76e9f4ae0697135e94df6744d5fde99cb637fc66 (diff) | |
| download | emacs-8ac9a23ede7da02e0fb3eed8b32d8dedc585eb44.tar.gz emacs-8ac9a23ede7da02e0fb3eed8b32d8dedc585eb44.zip | |
Mps: typo in config.h was breaking freebsd builds.
Copied from Perforce
Change: 161905
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
| -rw-r--r-- | mps/code/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/config.h b/mps/code/config.h index 2a518c48620..edf27000969 100644 --- a/mps/code/config.h +++ b/mps/code/config.h | |||
| @@ -242,7 +242,7 @@ | |||
| 242 | #define PROT_SIGINFO_GOOD(info) (1) | 242 | #define PROT_SIGINFO_GOOD(info) (1) |
| 243 | #elif defined(MPS_OS_O1) | 243 | #elif defined(MPS_OS_O1) |
| 244 | #define PROT_SIGINFO_GOOD(info) ((info)->si_code == SEGV_ACCERR) | 244 | #define PROT_SIGINFO_GOOD(info) ((info)->si_code == SEGV_ACCERR) |
| 245 | #elif define(MPS_OS_FR) | 245 | #elif defined(MPS_OS_FR) |
| 246 | #define PROT_SIGINFO_GOOD(info) ((info)->si_code == BUS_PAGE_FAULT) | 246 | #define PROT_SIGINFO_GOOD(info) ((info)->si_code == BUS_PAGE_FAULT) |
| 247 | #endif | 247 | #endif |
| 248 | 248 | ||