From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kai Grossjohann Newsgroups: gmane.emacs.devel Subject: Re: Tramp with global-auto-revert-mode. Date: Fri, 14 May 2004 22:32:19 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <867jvekawc.fsf@slowfox.dyndns.org> References: <200405122254.i4CMsUj29445@raven.dms.auburn.edu> <200405122326.i4CNQk929511@raven.dms.auburn.edu> <200405132324.i4DNOBs14811@raven.dms.auburn.edu> <200405140008.i4E08lb14858@raven.dms.auburn.edu> <871xln4xmc.fsf-monnier+emacs@gnu.org> <87oeorb5pq.fsf@emptyhost.emptydomain.de> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1084568975 30717 80.91.224.253 (14 May 2004 21:09:35 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 14 May 2004 21:09:35 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri May 14 23:09:29 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BOjvt-0005oD-00 for ; Fri, 14 May 2004 23:09:29 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BOjvt-0008Ok-00 for ; Fri, 14 May 2004 23:09:29 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BOjX8-0000pW-0V for emacs-devel@quimby.gnus.org; Fri, 14 May 2004 16:43:54 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BOjUe-0000Di-RI for emacs-devel@gnu.org; Fri, 14 May 2004 16:41:21 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BOjU2-0008Tw-Nc for emacs-devel@gnu.org; Fri, 14 May 2004 16:41:15 -0400 Original-Received: from [80.91.224.249] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BOjU2-0008Th-B9 for emacs-devel@gnu.org; Fri, 14 May 2004 16:40:42 -0400 Original-Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BOjU1-0005Kx-00 for ; Fri, 14 May 2004 22:40:41 +0200 Original-Received: from pd9e1e7fe.dip.t-dialin.net ([217.225.231.254]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 14 May 2004 22:40:41 +0200 Original-Received: from kai.grossjohann by pd9e1e7fe.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 14 May 2004 22:40:41 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 14 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pd9e1e7fe.dip.t-dialin.net User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (berkeley-unix) Cancel-Lock: sha1:gqv8vJIwoL6Mkke++MavWBwX4EM= X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:23420 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:23420 Stefan Monnier writes: > Sending new commands to perform file-readable-p canbe tricky because > the remote shell might be in any intermediate state, so we'd need to > detect this state, save it and restore it when done. Or else open > up a new connection. Opening a new connection actually seems the most promising approach to this humble poster. Managing multiple connections is already on the todo list -- it could be used for compilation buffers, for instance. So just opening a new connection on a reentrant call would be fairly easy to do, once the infrastructure is in place. Kai