From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Emacs 25.2, win64, env vars Date: Tue, 11 Jul 2017 17:43:41 +0300 Message-ID: <837ezfjaoy.fsf@gnu.org> References: <83r2xoi5i5.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1499784605 24637 195.159.176.226 (11 Jul 2017 14:50:05 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 11 Jul 2017 14:50:05 +0000 (UTC) Cc: emacs-devel@gnu.org, npostavs@users.sourceforge.net To: Fabrice Popineau Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 11 16:50:01 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dUwU9-0005zO-96 for ged-emacs-devel@m.gmane.org; Tue, 11 Jul 2017 16:49:57 +0200 Original-Received: from localhost ([::1]:46784 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dUwP3-0002R3-L4 for ged-emacs-devel@m.gmane.org; Tue, 11 Jul 2017 10:44:41 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44484) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dUwOF-0002NY-KB for emacs-devel@gnu.org; Tue, 11 Jul 2017 10:43:52 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dUwOB-0000Uj-Nt for emacs-devel@gnu.org; Tue, 11 Jul 2017 10:43:51 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:35078) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dUwOB-0000Ub-Kp; Tue, 11 Jul 2017 10:43:47 -0400 Original-Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1224 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dUwOA-0007fT-Pv; Tue, 11 Jul 2017 10:43:47 -0400 In-reply-to: (message from Fabrice Popineau on Tue, 11 Jul 2017 11:17:29 +0200) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:216477 Archived-At: > From: Fabrice Popineau > Date: Tue, 11 Jul 2017 11:17:29 +0200 > Cc: Noam Postavsky , Emacs developers > > Do you still see this problem on the current master? I don't see your > proposed change committed, but I cannot reproduce the problem, > either. Was this fixed in some other way? > > A bit strange, because I just did a 'make bootstrap' on master, and I still see the problem. I see a possible misunderstanding here. Your OP included more than one problematic recipe, so which one are you trying now? The first recipe you've shown is this: (getenv "TEMP") "C:\\Users\\Fabrice\\AppData\\Roaming\\Local\\Temp" (getenv "temp") "C:\\Users\\Fabrice\\AppData\\Roaming\\Local\\Temp" (setenv "TEMP" "c:/Temp/") "c:/Temp/" (getenv "TEMP") "C:\\Users\\Fabrice\\AppData\\Roaming\\Local\\Temp" (getenv "temp") "C:\\Users\\Fabrice\\AppData\\Roaming\\Local\\Temp" Is this still what you see now? If so, does it mean that after invoking 'setenv', your process-environment has 2 members which both start with "TEMP=", but have different values? Because _this_ is what I cannot reproduce and frankly don't understand how could it happen.