aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorKarl Heuer1995-05-12 22:23:42 +0000
committerKarl Heuer1995-05-12 22:23:42 +0000
commitb9df9faab45baa583b2dd388de708b0986bfbe30 (patch)
treee52b03c60e0e4479245f20f236a387bbd418a42a /src/emacs.c
parentcd17ae3fe7b9d33d6eda8b1a07c9a5f6cda8cf55 (diff)
downloademacs-b9df9faab45baa583b2dd388de708b0986bfbe30.tar.gz
emacs-b9df9faab45baa583b2dd388de708b0986bfbe30.zip
(main) [NeXT]: Add missing braces.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 2a79068b39f..08c91a5a093 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -449,12 +449,13 @@ main (argc, argv, envp)
449#endif 449#endif
450 450
451#ifdef NeXT 451#ifdef NeXT
452 extern int malloc_cookie; 452 {
453 453 extern int malloc_cookie;
454 /* This helps out unexnext.c. */ 454 /* This helps out unexnext.c. */
455 if (initialized) 455 if (initialized)
456 if (malloc_jumpstart (malloc_cookie) != 0) 456 if (malloc_jumpstart (malloc_cookie) != 0)
457 printf ("malloc jumpstart failed!\n"); 457 printf ("malloc jumpstart failed!\n");
458 }
458#endif /* NeXT */ 459#endif /* NeXT */
459 460
460#ifdef VMS 461#ifdef VMS