diff options
| author | Andrew Choi | 2002-07-01 23:30:21 +0000 |
|---|---|---|
| committer | Andrew Choi | 2002-07-01 23:30:21 +0000 |
| commit | 09740ad8a9c82b51464d3f718daf1f9fc3779a99 (patch) | |
| tree | e8cb7c5c2133036581f09299bfd5e942fd6f063d /src | |
| parent | ffe5000a54acd78807a89335c445af11c3820a6a (diff) | |
| download | emacs-09740ad8a9c82b51464d3f718daf1f9fc3779a99.tar.gz emacs-09740ad8a9c82b51464d3f718daf1f9fc3779a99.zip | |
2002-07-01 Andrew Choi <akochoi@shaw.ca>
* s/darwin.h: Define POSIX_SIGNALS.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/s/darwin.h | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f2ebcdd5b30..0881aa1a2c4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2002-07-01 Andrew Choi <akochoi@shaw.ca> | 1 | 2002-07-01 Andrew Choi <akochoi@shaw.ca> |
| 2 | 2 | ||
| 3 | * s/darwin.h: Define POSIX_SIGNALS. | ||
| 4 | |||
| 3 | * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef | 5 | * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef |
| 4 | and FSRefMakePath to convert FSSpec returned with Apple Event to | 6 | and FSRefMakePath to convert FSSpec returned with Apple Event to |
| 5 | Posix pathname. | 7 | Posix pathname. |
diff --git a/src/s/darwin.h b/src/s/darwin.h index 0d38ea5c196..59f63f57189 100644 --- a/src/s/darwin.h +++ b/src/s/darwin.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* System description header file for Darwin (Mac OS X). | 1 | /* System description header file for Darwin (Mac OS X). |
| 2 | Copyright (C) 2001 Free Software Foundation, Inc. | 2 | Copyright (C) 2001, 2002 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -291,6 +291,12 @@ Boston, MA 02111-1307, USA. */ | |||
| 291 | struct kboard; | 291 | struct kboard; |
| 292 | #endif | 292 | #endif |
| 293 | 293 | ||
| 294 | |||
| 295 | /* This makes create_process in process.c save and restore signal | ||
| 296 | handlers correctly. Suggested by Nozomu Ando.*/ | ||
| 297 | #define POSIX_SIGNALS | ||
| 298 | |||
| 299 | |||
| 294 | #ifdef temacs | 300 | #ifdef temacs |
| 295 | #define malloc unexec_malloc | 301 | #define malloc unexec_malloc |
| 296 | #define realloc unexec_realloc | 302 | #define realloc unexec_realloc |