diff options
| author | Noam Postavsky | 2016-06-29 18:52:57 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2016-07-18 17:22:06 -0400 |
| commit | 73f0715df53c6a12a3d9039ac1a1664d30c293ff (patch) | |
| tree | 713607d32db74cf9c0f3c35dcc3a65e40da1304e /src/callproc.c | |
| parent | 1879b9055eaf5c9f3fd126c2c21450cdd8c83262 (diff) | |
| download | emacs-73f0715df53c6a12a3d9039ac1a1664d30c293ff.tar.gz emacs-73f0715df53c6a12a3d9039ac1a1664d30c293ff.zip | |
Keep w32 environment settings internal only
* src/emacs.c (main) [WINDOWSNT]: Move init_environment calls after the
set_initial_environment call. This prevents Emacs' modifications to the
environment from contaminating Vprocess_environment and
Vinitial_environment (Bug #10980).
* src/callproc.c (getenv_internal) [WINDOWSNT]: Consult Emacs' internal
environment in as a fallback to Vprocess_environment.
* test/src/callproc-tests.el (initial-environment-preserved): New Test.
Diffstat (limited to 'src/callproc.c')
| -rw-r--r-- | src/callproc.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c index 7008b916dad..e8d089cf20e 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -1375,6 +1375,20 @@ getenv_internal (const char *var, ptrdiff_t varlen, char **value, | |||
| 1375 | Vprocess_environment)) | 1375 | Vprocess_environment)) |
| 1376 | return *value ? 1 : 0; | 1376 | return *value ? 1 : 0; |
| 1377 | 1377 | ||
| 1378 | /* On Windows we make some modifications to Emacs' enviroment | ||
| 1379 | without recording them in Vprocess_environment. */ | ||
| 1380 | #ifdef WINDOWSNT | ||
| 1381 | { | ||
| 1382 | char* tmpval = getenv (var); | ||
| 1383 | if (tmpval) | ||
| 1384 | { | ||
| 1385 | *value = tmpval; | ||
| 1386 | *valuelen = strlen (tmpval); | ||
| 1387 | return 1; | ||
| 1388 | } | ||
| 1389 | } | ||
| 1390 | #endif | ||
| 1391 | |||
| 1378 | /* For DISPLAY try to get the values from the frame or the initial env. */ | 1392 | /* For DISPLAY try to get the values from the frame or the initial env. */ |
| 1379 | if (strcmp (var, "DISPLAY") == 0) | 1393 | if (strcmp (var, "DISPLAY") == 0) |
| 1380 | { | 1394 | { |