diff options
| author | Michael Albinus | 2012-08-29 14:49:44 +0200 |
|---|---|---|
| committer | Michael Albinus | 2012-08-29 14:49:44 +0200 |
| commit | c2c43c2382db292bfe3cccbccad4386f81f9c8a4 (patch) | |
| tree | 623daaff9aea8598a9f23f7845bfdf38d5d4a905 /lisp/net | |
| parent | d5e2bcd3514bbf1a4e7022efd3b6555379d690a8 (diff) | |
| download | emacs-c2c43c2382db292bfe3cccbccad4386f81f9c8a4.tar.gz emacs-c2c43c2382db292bfe3cccbccad4386f81f9c8a4.zip | |
* eshell/esh-ext.el (eshell-external-command): Do not examine
remote shell scripts. See
<https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
* net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
"/usr/local/sbin".
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/tramp-sh.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 6283188d46a..2c1af3e83fa 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el | |||
| @@ -512,9 +512,9 @@ detected as prompt when being sent on echoing hosts, therefore.") | |||
| 512 | ;; IRIX64: /usr/bin | 512 | ;; IRIX64: /usr/bin |
| 513 | ;;;###tramp-autoload | 513 | ;;;###tramp-autoload |
| 514 | (defcustom tramp-remote-path | 514 | (defcustom tramp-remote-path |
| 515 | '(tramp-default-remote-path "/bin" "/usr/bin" "/usr/sbin" | 515 | '(tramp-default-remote-path "/bin" "/usr/bin" "/sbin" "/usr/sbin" |
| 516 | "/usr/local/bin" "/local/bin" "/local/freeware/bin" "/local/gnu/bin" | 516 | "/usr/local/bin" "/usr/local/sbin" "/local/bin" "/local/freeware/bin" |
| 517 | "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin" | 517 | "/local/gnu/bin" "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin" |
| 518 | "/opt/bin" "/opt/sbin" "/opt/local/bin") | 518 | "/opt/bin" "/opt/sbin" "/opt/local/bin") |
| 519 | "List of directories to search for executables on remote host. | 519 | "List of directories to search for executables on remote host. |
| 520 | For every remote host, this variable will be set buffer local, | 520 | For every remote host, this variable will be set buffer local, |