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
[Message part 1 (text/plain, inline)]
Your bug report
#37953: tramp: a local bash does not start
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 37953 <at> debbugs.gnu.org.
--
37953: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37953
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Version: 27.1
Koichi Arakawa <arakawa <at> pp.iij4u.or.jp> writes:
> Hi
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.
Thanks for the report, the same error happens on GNU/Linux. So I have
applied your patch to the repositories. Closing the bug.
> Best regards,
> Koichi Arakawa
Best regards, Michael.
[Message part 3 (message/rfc822, inline)]
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.