From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Albinus Newsgroups: gmane.emacs.devel Subject: Re: Tramp with GUD broken on trunk? Date: Tue, 10 Jul 2007 06:42:44 +0200 Message-ID: References: <18065.63231.612402.142669@kahikatea.snap.net.nz> <18066.3981.316891.841594@kahikatea.snap.net.nz> <18066.59645.564793.472461@kahikatea.snap.net.nz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1184042577 2276 80.91.229.12 (10 Jul 2007 04:42:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 10 Jul 2007 04:42:57 +0000 (UTC) Cc: emacs-devel@gnu.org To: Nick Roberts Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 10 06:42:55 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1I87Yp-00052A-EE for ged-emacs-devel@m.gmane.org; Tue, 10 Jul 2007 06:42:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I87Yo-0007EQ-Nl for ged-emacs-devel@m.gmane.org; Tue, 10 Jul 2007 00:42:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I87Yl-0007EK-9k for emacs-devel@gnu.org; Tue, 10 Jul 2007 00:42:47 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I87Yj-0007E8-VM for emacs-devel@gnu.org; Tue, 10 Jul 2007 00:42:47 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I87Yj-0007E5-N7 for emacs-devel@gnu.org; Tue, 10 Jul 2007 00:42:45 -0400 Original-Received: from mailrelay1.alcatel.de ([194.113.59.95]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1I87Yi-0007vb-Pr for emacs-devel@gnu.org; Tue, 10 Jul 2007 00:42:45 -0400 Original-Received: from slbhab.alcatel.de (slbhab.bln.sel.alcatel.de [149.204.63.218]) by mailrelay1.alcatel.de (8.13.4/8.13.4/ICT) with ESMTP id l6A4gYt4023915; Tue, 10 Jul 2007 06:42:34 +0200 In-Reply-To: <18066.59645.564793.472461@kahikatea.snap.net.nz> (Nick Roberts's message of "Tue, 10 Jul 2007 14:03:41 +1200") User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (hpux) X-Scanned-By: MIMEDefang 2.51 on 149.204.45.72 X-detected-kernel: Linux 2.4-2.6 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:74542 Archived-At: Nick Roberts writes: > > First of all, call-process and/or start-process must be replaced by > > process-file and start-file-process, respectively. > > GUD uses make-comint which uses start-process i.e. it's asynchronous so > it doesn't use call-process. Yep. You need to wrap the make-comint call with some code to use start-file-process instead of start-process. Maybe similar to the code I've applied in compilation-start. Or shall we extend comint to make this an option? Best regards, Michael.