diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-05-12 22:23:42 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-05-12 22:23:42 +0000 |
commit | b9df9faab45baa583b2dd388de708b0986bfbe30 (patch) | |
tree | e52b03c60e0e4479245f20f236a387bbd418a42a /src/emacs.c | |
parent | cd17ae3fe7b9d33d6eda8b1a07c9a5f6cda8cf55 (diff) | |
download | emacs-b9df9faab45baa583b2dd388de708b0986bfbe30.tar.gz |
(main) [NeXT]: Add missing braces.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 13 |
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) #endif #ifdef NeXT - extern int malloc_cookie; - - /* This helps out unexnext.c. */ - if (initialized) - if (malloc_jumpstart (malloc_cookie) != 0) - printf ("malloc jumpstart failed!\n"); + { + extern int malloc_cookie; + /* This helps out unexnext.c. */ + if (initialized) + if (malloc_jumpstart (malloc_cookie) != 0) + printf ("malloc jumpstart failed!\n"); + } #endif /* NeXT */ #ifdef VMS |