GNU bug report logs -
#31704
26.1; tramp-remote-path/shell: broken executable completion
Previous Next
Reported by: xristos <xristos <at> sdf.org>
Date: Mon, 4 Jun 2018 07:24:02 UTC
Severity: normal
Tags: fixed
Found in version 26.1
Fixed in version 27.1
Done: Michael Albinus <michael.albinus <at> gmx.de>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
The issue lies in shell--command-completion-data which is called
by shell-command-completion, it only checks directories in
exec-path (local) rather than tramp-remote-path. This bug also
leaks the local exec-path to the remote server.
To reproduce:
emacs -Q
Evaluate:
(require 'tramp)
;; For debugging
(setq tramp-persistency-file-name nil
tramp-verbose 10)
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
;; Assuming an account 'chris' exists at server 'remote',
;; to see the issue clearly make sure that there exists
;; a directory in the remote server PATH (e.g. ~/bin/)
;; but NOT in exec-path.
(let ((default-directory "/ssh:chris <at> remote:"))
(shell "*remote*"))
;; Assuming executable 'testbin' exists in remote server ~/bin/
;; and not inside any directory in exec-path:
remote$ testb<TAB> ;; No completion
M-:
(add-to-list 'exec-path "~/bin/")
remote$ testb<TAB> ;; Completes fine
If one checks the tramp debug buffer, one will see tramp
checking (and leaking information to the remote server)
all the directories that exist in the local exec-path.
This bug report was last modified 6 years and 251 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.