From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: display word wrapping Date: Wed, 26 May 2004 17:21:36 -0500 (CDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200405262221.i4QMLaw18151@raven.dms.auburn.edu> References: <20040526125439.GA10795@fencepost> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1085622302 21770 80.91.224.253 (27 May 2004 01:45:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 27 May 2004 01:45:02 +0000 (UTC) Cc: miles@gnu.org, emacs-devel@gnu.org, storm@cua.dk Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu May 27 03:44:50 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 1BT9ww-0000bR-00 for ; Thu, 27 May 2004 03:44:50 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BT9wv-00083G-00 for ; Thu, 27 May 2004 03:44:49 +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 1BT8b8-0007rZ-Ma for emacs-devel@quimby.gnus.org; Wed, 26 May 2004 20:18:14 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BT806-00028G-1q for emacs-devel@gnu.org; Wed, 26 May 2004 19:39:58 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BT76I-0001qb-LW for emacs-devel@gnu.org; Wed, 26 May 2004 18:42:45 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BT6n1-0006SU-Gq; Wed, 26 May 2004 18:22:23 -0400 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id i4QMMGuE002197; Wed, 26 May 2004 17:22:16 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id i4QMLaw18151; Wed, 26 May 2004 17:21:36 -0500 (CDT) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: dak@gnu.org In-reply-to: (message from David Kastrup on 26 May 2004 21:16:27 +0200) 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:23992 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:23992 David Kastrup wrote: > - Tramp reentrancy rework > > This is really a bug-fix, but seems to require major changes. I am not so sure. Most of the stuff we had up to now involved crashes in the garbage collector, and that is supposed to be fixed by now. Hangs are pretty bad too, even if they are not crashes. > Maybe we don't really need to do this for 21.4, if there is a > simpler way to simply avoid reentrancy (e.g. disable auto-revert > in remote buffers). Yup. One must not forget that a buggy version of tramp does not imply a regression when compared with 21.3 and no tramp, or an equally buggy add-on tramp. Except for those cases where ange-ftp breaks. I am not completely sure of that. In emacs-21.3 -q: file-name-handler-alist's value is (("^/[^/:]*\\'" . ange-ftp-completion-hook-function) ("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) ("\\`/:" . file-name-non-special)) In emacs-21.3.50 -q: file-name-handler-alist's value is (("\\`/[^/:]+:" . tramp-file-name-handler) ("\\`/:" . file-name-non-special)) The one problem we know of is auto-revert-mode, but anything that can call file-exists-p or its friends while Tramp is waiting for output could cause exactly the same problems. Sincerely, Luc.