aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32.c
diff options
context:
space:
mode:
authorGeoff Voelker1997-01-20 01:52:48 +0000
committerGeoff Voelker1997-01-20 01:52:48 +0000
commit75b08edbf56f9b34b34aff424fd7713698ecff0a (patch)
tree036e51674daea52aef764f017036f3ef924a2c29 /src/w32.c
parentd86c299a5f59a540fcf20a3604f626dc4235f29c (diff)
downloademacs-75b08edbf56f9b34b34aff424fd7713698ecff0a.tar.gz
emacs-75b08edbf56f9b34b34aff424fd7713698ecff0a.zip
Rebuild Vsystem_configuration at startup.
Diffstat (limited to 'src/w32.c')
-rw-r--r--src/w32.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/w32.c b/src/w32.c
index 195a322c503..734d6276e8f 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -583,6 +583,9 @@ w32_get_resource (key, lpdwtype)
583 return (NULL); 583 return (NULL);
584} 584}
585 585
586char *get_emacs_configuration (void);
587extern Lisp_Object Vsystem_configuration;
588
586void 589void
587init_environment () 590init_environment ()
588{ 591{
@@ -633,6 +636,9 @@ init_environment ()
633 } 636 }
634 } 637 }
635 638
639 /* Rebuild system configuration to reflect invoking system. */
640 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
641
636 init_user_info (); 642 init_user_info ();
637} 643}
638 644