diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-04-09 11:01:04 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-04-09 11:01:04 -0400 |
commit | beaab898968caf8b243a33d24824d430fabc31fc (patch) | |
tree | 6b20cee8a25d64a1d890a91e3cdefdf2010feef1 /lisp/comint.el | |
parent | 6083965958381b29aa55948670d2b85289b0be6d (diff) | |
download | emacs-beaab898968caf8b243a33d24824d430fabc31fc.tar.gz |
Stop messing with the EMACS env var
Fixes: debbugs:20202
* lisp/net/tramp-sh.el (tramp-remote-process-environment):
* lisp/comint.el (comint-exec-1):
* lisp/term.el (term-exec-1): Don't set EMACS envvar.
* lisp/progmodes/compile.el (compilation-start): Same and bring
INSIDE_EMACS's format in line with other users.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index 31649ff31ca..2769c8717d2 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -816,8 +816,6 @@ series of processes in the same Comint buffer. The hook (format "COLUMNS=%d" (window-width))) (list "TERM=emacs" (format "TERMCAP=emacs:co#%d:tc=unknown:" (window-width)))) - (unless (getenv "EMACS") - (list "EMACS=t")) (list (format "INSIDE_EMACS=%s,comint" emacs-version)) process-environment)) (default-directory |