aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Choi2002-08-25 16:44:51 +0000
committerAndrew Choi2002-08-25 16:44:51 +0000
commit511ca371fa8abb22f11ccd18fa71badc45999144 (patch)
tree2f09d838a43311dafb826fe905d2b377c0115b4f /src
parent19580e2cf6bb7e52f0aba60aca078349d8f1b8fa (diff)
downloademacs-511ca371fa8abb22f11ccd18fa71badc45999144.tar.gz
emacs-511ca371fa8abb22f11ccd18fa71badc45999144.zip
2002-08-25 Andrew Choi <akochoi@shaw.ca>
* s/darwin.h (HAVE_WORKING_VFORK): #undef it. Define vfork to fork.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/s/darwin.h10
2 files changed, 8 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index be8a9d9d3a7..df59a27aef1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12002-08-25 Andrew Choi <akochoi@shaw.ca> 12002-08-25 Andrew Choi <akochoi@shaw.ca>
2 2
3 * s/darwin.h (HAVE_WORKING_VFORK): #undef it. Define vfork to
4 fork.
5
3 * macterm.c (XTread_socket): Remove code to call 6 * macterm.c (XTread_socket): Remove code to call
4 SendEventToEventTarget for keys with command modifiers when 7 SendEventToEventTarget for keys with command modifiers when
5 mac_command_key_is_meta is nil. 8 mac_command_key_is_meta is nil.
diff --git a/src/s/darwin.h b/src/s/darwin.h
index c8e5ac54f7a..dcfb00a568e 100644
--- a/src/s/darwin.h
+++ b/src/s/darwin.h
@@ -297,11 +297,11 @@ Boston, MA 02111-1307, USA. */
297struct kboard; 297struct kboard;
298#endif 298#endif
299 299
300 300/* The following solves the problem that Emacs hangs when evaluating
301/* This makes create_process in process.c save and restore signal 301 (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile
302 handlers correctly. Suggested by Nozomu Ando.*/ 302 does not exist. */
303#define POSIX_SIGNALS 303#undef HAVE_WORKING_VFORK
304 304#define vfork fork
305 305
306#ifdef temacs 306#ifdef temacs
307#define malloc unexec_malloc 307#define malloc unexec_malloc