unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Dmitry Gutov <dgutov@yandex.ru>
To: Eli Zaretskii <eliz@gnu.org>, Paul Eggert <eggert@cs.ucla.edu>,
	Andreas Schwab <schwab@linux-m68k.org>
Cc: 23779@debbugs.gnu.org, npostavs@users.sourceforge.net
Subject: bug#23779: 25.0.95; consing "SHELLVAR" onto process-environment doesn't remove it from subprocess env
Date: Fri, 17 Jun 2016 17:47:49 +0300	[thread overview]
Message-ID: <91dddf53-b680-5568-cc9e-3f54859c8049@yandex.ru> (raw)
In-Reply-To: <83vb17c2z3.fsf@gnu.org>

On 06/17/2016 05:19 PM, Eli Zaretskii wrote:

>> I wonder if we should make setenv work non-destructively now.
>
> Why should we do that?  We have initial-environment if we need the
> original value.

Normally, we only want to change the environment for the duration of a 
command. So, what are the downsides?

One the plus side:

- setenv-internal will become simpler.
- We won't have to cons manually anymore. The code will become a bit 
nicer, like:

diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index f35c84d..5315e0a 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -1450,7 +1450,8 @@ vc-git--call
           (or coding-system-for-read vc-git-log-output-coding-system))
  	(coding-system-for-write
           (or coding-system-for-write vc-git-commits-coding-system))
-	(process-environment (cons "PAGER=" process-environment)))
+	(process-environment process-environment))
+    (setenv "PAGER")
      (apply 'process-file vc-git-program nil buffer nil command args)))

  (defun vc-git--out-ok (command &rest args)






  reply	other threads:[~2016-06-17 14:47 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-17  3:33 bug#23779: 25.0.95; consing "SHELLVAR" onto process-environment doesn't remove it from subprocess env Noam Postavsky
2016-06-17  7:11 ` Eli Zaretskii
2016-06-17 12:17   ` Dmitry Gutov
2016-06-17 14:01     ` Eli Zaretskii
2016-06-17 14:12       ` Dmitry Gutov
2016-06-17 14:19         ` Eli Zaretskii
2016-06-17 14:47           ` Dmitry Gutov [this message]
2016-06-17 16:52             ` Andreas Schwab
2016-06-17 16:55               ` Dmitry Gutov
2016-06-17 17:06             ` Eli Zaretskii
2016-06-17 19:01               ` Dmitry Gutov
2016-06-17 20:10                 ` Eli Zaretskii
2016-06-17 21:26                   ` Dmitry Gutov
2016-06-18  7:51                     ` Eli Zaretskii
2016-06-18  1:36             ` Noam Postavsky
2016-06-18  1:44               ` Dmitry Gutov
2016-06-19  2:27           ` Paul Eggert
2016-06-19 15:01             ` Eli Zaretskii
2016-06-19 22:53               ` Paul Eggert
2016-06-20 14:21                 ` Eli Zaretskii
2016-06-21 13:53                   ` Dmitry Gutov
2016-06-21 15:21                     ` Eli Zaretskii
2016-06-21 15:24                       ` Dmitry Gutov
2016-06-21 16:12                         ` Eli Zaretskii
2016-06-21 23:05                           ` Dmitry Gutov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=91dddf53-b680-5568-cc9e-3f54859c8049@yandex.ru \
    --to=dgutov@yandex.ru \
    --cc=23779@debbugs.gnu.org \
    --cc=eggert@cs.ucla.edu \
    --cc=eliz@gnu.org \
    --cc=npostavs@users.sourceforge.net \
    --cc=schwab@linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).