aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/emacsserver.c
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2001-12-19 07:23:54 +0000
committerPavel Janík <[email protected]>2001-12-19 07:23:54 +0000
commitb8509940e96d5e4d9f0c7de480291accbb3b56d1 (patch)
tree499c6d578ea7f615ed9db92fa240194c129a2a78 /lib-src/emacsserver.c
parente69233c2de0e722fd9f7805ecf68a6279034de12 (diff)
Conditionally include config.h.
Diffstat (limited to 'lib-src/emacsserver.c')
-rw-r--r--lib-src/emacsserver.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib-src/emacsserver.c b/lib-src/emacsserver.c
index d68b5286db..431c5b3e4e 100644
--- a/lib-src/emacsserver.c
+++ b/lib-src/emacsserver.c
@@ -26,7 +26,11 @@ Boston, MA 02111-1307, USA. */
up to the Emacs which then executes them. */
#define NO_SHORTNAMES
+
+#ifdef HAVE_CONFIG_H
#include "config.h"
+#endif
+
#include <signal.h>
#undef signal
@@ -240,7 +244,7 @@ main (argc, argv)
if (openfiles == 0)
abort ();
- /*
+ /*
* Open up an AF_UNIX socket in this person's home directory
*/
@@ -274,7 +278,7 @@ main (argc, argv)
perror_1 ("unlink");
exit (1);
}
-#else
+#else
if ((homedir = getenv ("HOME")) == NULL)
fatal_error ("No home directory\n");
@@ -398,14 +402,14 @@ main (argc, argv)
fflush (infile);
/* If command is close, close connection to client. */
- if (strncmp (code, "Close:", 6) == 0)
- if (infd > 2)
+ if (strncmp (code, "Close:", 6) == 0)
+ if (infd > 2)
{
fclose (infile);
close (infd);
}
continue;
- }
+ }
}
}