emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-24 9366f05: Tramp: Disable paging with PAGER=cat


From: Michael Albinus
Subject: [Emacs-diffs] emacs-24 9366f05: Tramp: Disable paging with PAGER=cat
Date: Sun, 15 Feb 2015 15:11:43 +0000

branch: emacs-24
commit 9366f0547e6d5c1b3fe6c5d7c890e70ce232e6e9
Author: Jérémy Compostella <address@hidden>
Commit: Michael Albinus <address@hidden>

    Tramp: Disable paging with PAGER=cat
    
    Fixes: debbugs:19870
    
    * net/tramp-sh.el (tramp-remote-process-environment): Disable paging
    with PAGER=cat.
---
 lisp/ChangeLog       |    5 +++++
 lisp/net/tramp-sh.el |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ef14539..6373df6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-15  Jérémy Compostella  <address@hidden>
+
+       * net/tramp-sh.el (tramp-remote-process-environment): Disable paging
+       with PAGER=cat.  (Bug#19870)
+
 2015-02-13  Glenn Morris  <address@hidden>
 
        * textmodes/flyspell.el (flyspell-duplicate-distance):
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 8e65686..bd7aec9 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -457,7 +457,7 @@ as given in your `~/.profile'."
     ,(format "TERM=%s" tramp-terminal-type)
     "EMACS=t" ;; Deprecated.
     ,(format "INSIDE_EMACS='%s,tramp:%s'" emacs-version tramp-version)
-    "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" "PAGER=\"\""
+    "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" "PAGER=cat"
     "autocorrect=" "correct=")
   "List of environment variables to be set on the remote host.
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]