diff options
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/emacs.c b/src/emacs.c index c766523b1c3..d0e7a748849 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -165,7 +165,7 @@ int inhibit_window_system; data on the first attempt to change it inside asynchronous code. */ int running_asynch_code; -#if defined(HAVE_X_WINDOWS) || defined(HAVE_NS) +#if defined (HAVE_X_WINDOWS) || defined (HAVE_NS) /* If non-zero, -d was specified, meaning we're using some window system. */ int display_arg; #endif @@ -811,7 +811,7 @@ main (int argc, char **argv) { static char heapexec[] = "EMACS_HEAP_EXEC=true"; /* Set this so we only do this once. */ - putenv(heapexec); + putenv (heapexec); /* A flag to turn off address randomization which is introduced in linux kernel shipped with fedora core 4 */ @@ -851,7 +851,7 @@ main (int argc, char **argv) stack allocation routine for new process that the allocation fails if stack limit is not on page boundary. So, round up the new limit to page boundary. */ - newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize(); + newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize (); #endif if (newlim > rlim.rlim_max) { @@ -1100,7 +1100,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem || strlen (dname_arg) < 1 || strlen (dname_arg) > 70) { fprintf (stderr, "emacs daemon: daemon name absent or too long\n"); - exit(1); + exit (1); } dname_arg2[0] = '\0'; sscanf (dname_arg, "\n%d,%d\n%s", &(daemon_pipe[0]), &(daemon_pipe[1]), @@ -1118,7 +1118,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC); #ifdef HAVE_SETSID - setsid(); + setsid (); #endif #else /* DOS_NT */ fprintf (stderr, "This platform does not support the -daemon flag.\n"); @@ -1319,7 +1319,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem = argmatch (argv, argc, "-nsl", "--no-site-lisp", 11, NULL, &skip_args); #ifdef HAVE_NS - ns_alloc_autorelease_pool(); + ns_alloc_autorelease_pool (); if (!noninteractive) { #ifdef NS_IMPL_COCOA @@ -1327,12 +1327,12 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem { /* FIXME: Do the right thing if getenv returns NULL, or if chdir fails. */ - if (!strncmp(argv[skip_args], "-psn", 4)) + if (!strncmp (argv[skip_args], "-psn", 4)) { skip_args += 1; chdir (getenv ("HOME")); } - else if (skip_args+1 < argc && !strncmp(argv[skip_args+1], "-psn", 4)) + else if (skip_args+1 < argc && !strncmp (argv[skip_args+1], "-psn", 4)) { skip_args += 2; chdir (getenv ("HOME")); @@ -1560,9 +1560,9 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem #ifdef MSDOS syms_of_xmenu (); - syms_of_dosfns(); - syms_of_msdos(); - syms_of_win16select(); + syms_of_dosfns (); + syms_of_msdos (); + syms_of_win16select (); #endif /* MSDOS */ #ifdef HAVE_NS @@ -1661,7 +1661,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem GNU/Linux and MinGW. It might work on some other systems too. Give it a try and tell us if it works on your system. To compile for profiling, use the configure option --enable-profiling. */ -#if defined (__FreeBSD__) || defined (GNU_LINUX) || defined(__MINGW32__) +#if defined (__FreeBSD__) || defined (GNU_LINUX) || defined (__MINGW32__) #ifdef PROFILING if (initialized) { |