aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorAndrew Choi <[email protected]>2002-08-16 02:30:21 +0000
committerAndrew Choi <[email protected]>2002-08-16 02:30:21 +0000
commit1000788b7b3bafc8f1b818f013afc8d06e6c0240 (patch)
treeab456a18dfe88e9b4b5c1ef139129c144ac798fb /src/emacs.c
parent56bd69df597bec2f7144be9f2ee1c0a56ef9a8e0 (diff)
2002-08-15 Andrew Choi <[email protected]>
* mac.c (init_mac_osx_environment): New function. * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 4d03eab89b..5d4f24d314 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1363,6 +1363,11 @@ main (argc, argv, envp)
init_ntproc (); /* must precede init_editfns. */
#endif
+#ifdef MAC_OSX
+ if (initialized)
+ init_mac_osx_environment ();
+#endif
+
/* egetenv is a pretty low-level facility, which may get called in
many circumstances; it seems flimsy to put off initializing it
until calling init_callproc. */