aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Choi2002-07-01 23:30:21 +0000
committerAndrew Choi2002-07-01 23:30:21 +0000
commit09740ad8a9c82b51464d3f718daf1f9fc3779a99 (patch)
treee8cb7c5c2133036581f09299bfd5e942fd6f063d /src
parentffe5000a54acd78807a89335c445af11c3820a6a (diff)
downloademacs-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/ChangeLog2
-rw-r--r--src/s/darwin.h8
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 @@
12002-07-01 Andrew Choi <akochoi@shaw.ca> 12002-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
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -291,6 +291,12 @@ Boston, MA 02111-1307, USA. */
291struct kboard; 291struct 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