Mercurial > hg > xemacs-beta
comparison src/process.c @ 4834:b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Tue, 12 Jan 2010 01:38:04 -0600 |
parents | aa5ed11f473b |
children | a98ca4640147 |
comparison
equal
deleted
inserted
replaced
4833:4dd2389173fc | 4834:b3ea9c582280 |
---|---|
2437 Fcons (build_ext_string (*envp, Qmswindows_unicode), | 2437 Fcons (build_ext_string (*envp, Qmswindows_unicode), |
2438 Vprocess_environment); | 2438 Vprocess_environment); |
2439 #else | 2439 #else |
2440 for (envp = environ; envp && *envp; envp++) | 2440 for (envp = environ; envp && *envp; envp++) |
2441 Vprocess_environment = | 2441 Vprocess_environment = |
2442 Fcons (build_ext_string (*envp, Qnative), Vprocess_environment); | 2442 Fcons (build_ext_string (*envp, Qenvironment_variable_encoding), |
2443 Vprocess_environment); | |
2443 #endif | 2444 #endif |
2444 /* This gets set back to 0 in disksave_object_finalization() */ | 2445 /* This gets set back to 0 in disksave_object_finalization() */ |
2445 env_initted = 1; | 2446 env_initted = 1; |
2446 } | 2447 } |
2447 | 2448 |