aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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