summaryrefslogtreecommitdiff
path: root/lib-src/emacsclient.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-09-17 02:37:17 +0000
committerKarl Heuer <kwzh@gnu.org>1996-09-17 02:37:17 +0000
commite397a0172fe822eb80080184f5961a26916c9626 (patch)
treecf50a152e1a9a811b5ccbb14e266fb677f2637db /lib-src/emacsclient.c
parent7c5a1541f34c8eec8f5e1e7db66819cb6a23496a (diff)
downloademacs-e397a0172fe822eb80080184f5961a26916c9626.tar.gz
Replaced all BSD with BSD_SYSTEM.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r--lib-src/emacsclient.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index b74cc26d162..2e99e9d34ad 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -259,7 +259,7 @@ main (argc, argv)
exit (1);
}
-#ifdef BSD
+#ifdef BSD_SYSTEM
cwd = getwd (string);
#else
cwd = getcwd (string, sizeof string);
@@ -374,7 +374,7 @@ main (argc, argv)
}
/* Determine working dir, so we can prefix it to all the arguments. */
-#ifdef BSD
+#ifdef BSD_SYSTEM
temp = getwd (gwdirb);
#else
temp = getcwd (gwdirb, sizeof gwdirb);