summaryrefslogtreecommitdiff
path: root/lisp/net/tramp.el
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2023-01-05 13:23:04 +0100
committerMichael Albinus <michael.albinus@gmx.de>2023-01-05 13:23:04 +0100
commit15fc7b3cde92e420f48dfe188251e6af4d832af5 (patch)
tree7944df52eff8fa1357a7c7271d81c67edaa42ae1 /lisp/net/tramp.el
parente1b2446b2e944acbad6e27f28ee639caa24af198 (diff)
downloademacs-15fc7b3cde92e420f48dfe188251e6af4d832af5.tar.gz
Remove obsolete Tramp items
* etc/NEWS: Obsolete user option 'tramp-completion-reread-directory-timeout' has been removed. Fix typos. * lisp/net/tramp-archive.el (tramp-archive-file-name-handler-alist): Ignore `make-directory-internal'. * lisp/net/tramp-sh.el (tramp-get-remote-trash): Remove. * lisp/net/tramp-smb.el (tramp-smb-handle-make-directory-internal): Remove. * lisp/net/tramp.el (tramp-default-user): Fix docstring. (tramp-completion-reread-directory-timeout): Remove.
Diffstat (limited to 'lisp/net/tramp.el')
-rw-r--r--lisp/net/tramp.el18
1 files changed, 1 insertions, 17 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 4b6addd9b05..67a269ce50a 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -443,9 +443,7 @@ See `tramp-methods' for a list of possibilities for METHOD."
(defcustom tramp-default-user nil
"Default user to use for transferring files.
It is nil by default; otherwise settings in configuration files like
-\"~/.ssh/config\" would be overwritten. Also see `tramp-default-user-alist'.
-
-This variable is regarded as obsolete, and will be removed soon."
+\"~/.ssh/config\" would be overwritten. Also see `tramp-default-user-alist'."
:type '(choice (const nil) string))
;;;###tramp-autoload
@@ -1402,20 +1400,6 @@ based on the Tramp and Emacs versions, and should not be set here."
:version "26.1"
:type '(repeat string))
-(defcustom tramp-completion-reread-directory-timeout 10
- "Defines seconds since last remote command before rereading a directory.
-A remote directory might have changed its contents. In order to
-make it visible during file name completion in the minibuffer,
-Tramp flushes its cache and rereads the directory contents when
-more than `tramp-completion-reread-directory-timeout' seconds
-have been gone since last remote command execution. A value of t
-would require an immediate reread during filename completion, nil
-means to use always cached values for the directory contents."
- :type '(choice (const nil) (const t) integer))
-(make-obsolete-variable
- 'tramp-completion-reread-directory-timeout
- 'remote-file-name-inhibit-cache "27.2")
-
;;; Internal Variables:
(defvar tramp-current-connection nil