aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
authorMichael Albinus2012-03-01 10:01:08 +0100
committerMichael Albinus2012-03-01 10:01:08 +0100
commit99a54f2128e116ef58542fe745b3383f53dcf280 (patch)
tree3b2b21308f2777b04f05333db83c45f4a9a36fff /lisp/net
parenta032a70212f82e2d7d1e8ca056508a16f4fd5c3e (diff)
downloademacs-99a54f2128e116ef58542fe745b3383f53dcf280.tar.gz
emacs-99a54f2128e116ef58542fe745b3383f53dcf280.zip
* net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
Reported by Robert Lupton the Good <rhl@astro.princeton.edu>. * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'. Add "PAGER=" to `process-environment'.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/tramp-sh.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 801ec5f5fc9..1c23a6f20f3 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -543,7 +543,7 @@ as given in your `~/.profile'."
543 ,(format "TERM=%s" tramp-terminal-type) 543 ,(format "TERM=%s" tramp-terminal-type)
544 "EMACS=t" ;; Deprecated. 544 "EMACS=t" ;; Deprecated.
545 ,(format "INSIDE_EMACS='%s,tramp:%s'" emacs-version tramp-version) 545 ,(format "INSIDE_EMACS='%s,tramp:%s'" emacs-version tramp-version)
546 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" 546 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" "PAGER=\"\""
547 "autocorrect=" "correct=") 547 "autocorrect=" "correct=")
548 548
549 "*List of environment variables to be set on the remote host. 549 "*List of environment variables to be set on the remote host.