diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2021-03-13 14:35:39 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2021-03-13 14:35:39 +0100 |
commit | 695f6792f1524a446d276bf5c5e53bbb4c200909 (patch) | |
tree | c1c039876fd7ac8bb0a0ca32d0499ca2872a68d7 /lisp/net/tramp-cmds.el | |
parent | aa644996dfd67872a0271d5bf92dcaa44aba6469 (diff) | |
download | emacs-695f6792f1524a446d276bf5c5e53bbb4c200909.tar.gz emacs-695f6792f1524a446d276bf5c5e53bbb4c200909.tar.bz2 emacs-695f6792f1524a446d276bf5c5e53bbb4c200909.zip |
Remove ;;;###tramp-autoload cookie from Tramp defcustoms (Bug#47063)
* lisp/net/tramp-crypt.el (tramp-crypt-enabled-p): New defun.
(tramp-crypt-add-directory, tramp-crypt-remove-directory):
Add property `completion-predicate'.
* lisp/net/tramp-sh.el (tramp-terminal-type, tramp-remote-path)
(tramp-remote-process-environment): Remove. Move them to ...
* lisp/net/tramp.el: ... here.
Diffstat (limited to 'lisp/net/tramp-cmds.el')
-rw-r--r-- | lisp/net/tramp-cmds.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el index 1e48f8dbb8c..d208f0e044a 100644 --- a/lisp/net/tramp-cmds.el +++ b/lisp/net/tramp-cmds.el @@ -208,7 +208,6 @@ This includes password cache, file cache, connection cache, buffers." (dolist (name (tramp-list-remote-buffers)) (when (bufferp (get-buffer name)) (kill-buffer name)))) -;;;###tramp-autoload (defcustom tramp-default-rename-alist nil "Default target for renaming remote buffer file names. This is an alist of cons cells (SOURCE . TARGET). The first @@ -231,7 +230,6 @@ expression which always matches." :type '(repeat (cons (choice :tag "Source regexp" regexp sexp) (choice :tag "Target name" string (const nil))))) -;;;###tramp-autoload (defcustom tramp-confirm-rename-file-names t "Whether renaming a buffer file name must be confirmed." :group 'tramp |