]> git.eshelyaron.com Git - emacs.git/commitdiff
Rebuild Vsystem_configuration at startup.
authorGeoff Voelker <voelker@cs.washington.edu>
Mon, 20 Jan 1997 01:52:48 +0000 (01:52 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Mon, 20 Jan 1997 01:52:48 +0000 (01:52 +0000)
src/w32.c

index 195a322c5038ded09bdb134c96979b5fcdaadcfc..734d6276e8fe934d88f34cbef21d91f5da251f8a 100644 (file)
--- a/src/w32.c
+++ b/src/w32.c
@@ -583,6 +583,9 @@ w32_get_resource (key, lpdwtype)
   return (NULL);
 }
 
+char *get_emacs_configuration (void);
+extern Lisp_Object Vsystem_configuration;
+
 void
 init_environment ()
 {
@@ -633,6 +636,9 @@ init_environment ()
       }
   }
 
+  /* Rebuild system configuration to reflect invoking system.  */
+  Vsystem_configuration = build_string (EMACS_CONFIGURATION);
+
   init_user_info ();
 }