aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/emacs.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 695e866acc2..b288af0e2b9 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -235,6 +235,15 @@ main (argc, argv, envp)
235 } 235 }
236#endif 236#endif
237 237
238#ifdef NeXT
239 static int malloc_cookie;
240
241 /* This helps out unexnext.c. */
242 if (initialized)
243 if (malloc_jumpstart (malloc_cookie) != 0)
244 printf ("malloc jumpstart failed!\n");
245#endif /* NeXT */
246
238#ifdef HAVE_X_WINDOWS 247#ifdef HAVE_X_WINDOWS
239 /* Stupid kludge to catch command-line display spec. We can't 248 /* Stupid kludge to catch command-line display spec. We can't
240 handle this argument entirely in window system dependent code 249 handle this argument entirely in window system dependent code