summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2022-10-31 11:55:45 -0400
committerJim Porter <jporterbugs@gmail.com>2022-11-05 12:05:05 -0700
commit4e108213341c99193d73133bb9d2cfbf31e6d8c9 (patch)
treee5857d919f5891ab32d17bbaa2d176a9704dcab2
parent062d16c3ebed270aa1cb64b6b6cd09c36002d4a5 (diff)
downloademacs-4e108213341c99193d73133bb9d2cfbf31e6d8c9.tar.gz
lisp/eshell/em-tramp.el: Rename 'TRAMP' to 'Tramp'.
-rw-r--r--lisp/eshell/em-tramp.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/eshell/em-tramp.el b/lisp/eshell/em-tramp.el
index 3daac1db3b4..499deaa7fc5 100644
--- a/lisp/eshell/em-tramp.el
+++ b/lisp/eshell/em-tramp.el
@@ -1,4 +1,4 @@
-;;; em-tramp.el --- Eshell features that require TRAMP -*- lexical-binding:t -*-
+;;; em-tramp.el --- Eshell features that require Tramp -*- lexical-binding:t -*-
;; Copyright (C) 1999-2022 Free Software Foundation, Inc.
@@ -21,7 +21,7 @@
;;; Commentary:
-;; Eshell features that require TRAMP.
+;; Eshell features that require Tramp.
;;; Code:
@@ -38,17 +38,17 @@
;;;###autoload
(progn
(defgroup eshell-tramp nil
- "This module defines commands that use TRAMP in a way that is
+ "This module defines commands that use Tramp in a way that is
not transparent to the user. So far, this includes only the
built-in su, sudo and doas commands, which are not compatible
with the full, external su, sudo, and doas commands, and
- require the user to understand how to use the TRAMP sudo
+ require the user to understand how to use the Tramp sudo
method."
- :tag "TRAMP Eshell features"
+ :tag "Tramp Eshell features"
:group 'eshell-module))
(defun eshell-tramp-initialize () ;Called from `eshell-mode' via intern-soft!
- "Initialize the TRAMP-using commands code."
+ "Initialize the Tramp-using commands code."
(when (eshell-using-module 'eshell-cmpl)
(add-hook 'pcomplete-try-first-hook
'eshell-complete-host-reference nil t))
@@ -59,9 +59,9 @@
(autoload 'eshell-parse-command "esh-cmd")
(defun eshell/su (&rest args)
- "Alias \"su\" to call TRAMP.
+ "Alias \"su\" to call Tramp.
-Uses the system su through TRAMP's su method."
+Uses the system su through Tramp's su method."
(eshell-eval-using-options
"su" args
'((?h "help" nil nil "show this usage screen")
@@ -110,7 +110,7 @@ Become another USER during a login session.")
(defun eshell/sudo (&rest args)
"Alias \"sudo\" to call Tramp.
-Uses the system sudo through TRAMP's sudo method."
+Uses the system sudo through Tramp's sudo method."
(eshell-eval-using-options
"sudo" args
'((?h "help" nil nil "show this usage screen")