diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-01-20 01:52:48 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-01-20 01:52:48 +0000 |
commit | 75b08edbf56f9b34b34aff424fd7713698ecff0a (patch) | |
tree | 036e51674daea52aef764f017036f3ef924a2c29 /src/w32.c | |
parent | d86c299a5f59a540fcf20a3604f626dc4235f29c (diff) | |
download | emacs-75b08edbf56f9b34b34aff424fd7713698ecff0a.tar.gz |
Rebuild Vsystem_configuration at startup.
Diffstat (limited to 'src/w32.c')
-rw-r--r-- | src/w32.c | 6 |
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) 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 (); } |