From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.devel Subject: Re: over-engineered (and under-standardized) inferior interfaces Date: Wed, 27 Aug 2014 16:05:46 +0200 Message-ID: <87tx4yqb7p.fsf@thinkpad-t440p.tsdh.org> References: <87iolld15k.fsf@igel.home> <87oavdjbes.fsf@gmx.de> <87ha13utgp.fsf@gmx.de> <87egw25siy.fsf@gmx.de> <87siki188k.fsf@gmx.de> <87mwaq14ez.fsf@gmx.de> <87egw2139g.fsf@gmx.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1409148392 7980 80.91.229.3 (27 Aug 2014 14:06:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 27 Aug 2014 14:06:32 +0000 (UTC) Cc: Michael Albinus , emacs-devel@gnu.org To: Sam Steingold Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Aug 27 16:06:24 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XMdri-0004xV-Ug for ged-emacs-devel@m.gmane.org; Wed, 27 Aug 2014 16:06:23 +0200 Original-Received: from localhost ([::1]:59728 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMdri-0001XX-Du for ged-emacs-devel@m.gmane.org; Wed, 27 Aug 2014 10:06:22 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40017) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMdrK-0001XC-Bs for emacs-devel@gnu.org; Wed, 27 Aug 2014 10:06:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XMdrE-0008Jo-Fz for emacs-devel@gnu.org; Wed, 27 Aug 2014 10:05:58 -0400 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]:38607) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMdrE-0008Ji-AL; Wed, 27 Aug 2014 10:05:52 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by deliver.uni-koblenz.de (Postfix) with ESMTP id 4ADC91A8253; Wed, 27 Aug 2014 16:05:51 +0200 (CEST) X-Virus-Scanned: amavisd-new at uni-koblenz.de Original-Received: from deliver.uni-koblenz.de ([127.0.0.1]) by localhost (deliver.uni-koblenz.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9mPDKApywZEv; Wed, 27 Aug 2014 16:05:50 +0200 (CEST) X-CHKRCPT: Envelopesender noch tsdh@gnu.org Original-Received: from thinkpad-t440p.tsdh.org (dhcp220.uni-koblenz.de [141.26.71.220]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by deliver.uni-koblenz.de (Postfix) with ESMTPSA id E88831A8251; Wed, 27 Aug 2014 16:05:49 +0200 (CEST) Mail-Followup-To: Sam Steingold , Michael Albinus , emacs-devel@gnu.org In-Reply-To: (Sam Steingold's message of "Wed, 27 Aug 2014 09:52:49 -0400") User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/24.4.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 141.26.64.15 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:173847 Archived-At: Sam Steingold writes: >> This is likely due to "- t" in the arguments. Tramp is not known to >> send the arguments this way. Did you modify tramp-methods? > > yes: > > (assq 'tramp-login-args (cdr (assoc "ssh" tramp-methods))) > (tramp-login-args (#1="-t" #1# ("-l" "%u") ("-p" "%p") ("%c") ("-e" > "none") ("%h"))) > > "-t" is necessary to tell the sub-processes that this is an > interactive session and not a batch session. > why does tramp insert space between "-" and "t"? The docs say that tramp-login-args as a list of lists, so probably you want to add ("-t") and not just "-t". Bye, Tassilo