GNU bug report logs -
#37953
tramp: a local bash does not start
Previous Next
Reported by: Koichi Arakawa <arakawa <at> pp.iij4u.or.jp>
Date: Mon, 28 Oct 2019 00:08:02 UTC
Severity: normal
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
Hi
I'm using Emacs in the MSYS2 environment. And the local shell bash
depends on the order of its command-line switches.
When the last argument is "-i", bash starts normally.
>C:/msys64/usr/bin/bash -norc -noprofile -i
bash-4.4$
But in another case, it ends with an error.
>C:/msys64/usr/bin/bash -i -norc -noprofile
/usr/bin/bash: line 0: /usr/bin/bash: -noprofile: invalid option name
So I think we need the following patch to fix that.
Best regards,
Koichi Arakawa
--- tramp-sh.el.~1~ 2019-10-20 10:48:27.300959800 +0900
+++ tramp-sh.el 2019-10-28 08:47:12.048207800 +0900
@@ -4877,9 +4877,9 @@
(tramp-get-connection-buffer vec)
(append
(list tramp-encoding-shell)
+ (and extra-args (split-string extra-args))
(and tramp-encoding-command-interactive
- (list tramp-encoding-command-interactive))
- (and extra-args (split-string extra-args)))))))
+ (list tramp-encoding-command-interactive)))))))
;; Set sentinel and query flag. Initialize variables.
(set-process-sentinel p #'tramp-process-sentinel)
This bug report was last modified 5 years and 213 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.