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: Tramp with global-auto-revert-mode. Date: Wed, 12 May 2004 17:54:30 -0500 (CDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200405122254.i4CMsUj29445@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1084402645 28143 80.91.224.253 (12 May 2004 22:57:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 12 May 2004 22:57:25 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu May 13 00:57:17 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 1BO2f7-0004PR-00 for ; Thu, 13 May 2004 00:57:17 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BO2f7-0001wL-00 for ; Thu, 13 May 2004 00:57:17 +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 1BO2dp-0007qY-Tj for emacs-devel@quimby.gnus.org; Wed, 12 May 2004 18:55:57 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BO2dQ-0007Kq-Jo for emacs-devel@gnu.org; Wed, 12 May 2004 18:55:32 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BO2cY-0006T7-NG for emacs-devel@gnu.org; Wed, 12 May 2004 18:55:10 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BO2cY-0006SA-1W for emacs-devel@gnu.org; Wed, 12 May 2004 18:54:38 -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 i4CMsaTS017614; Wed, 12 May 2004 17:54:36 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id i4CMsUj29445; Wed, 12 May 2004 17:54:30 -0500 (CDT) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: kai@emptydomain.de 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:23284 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:23284 I start: emacs -q --eval '(progn (blink-cursor-mode 0) (global-auto-revert-mode 1))' I visit a file ~/streams.texi on a remote Solaris2.8 machine, using: C-x C-f /ssh:USER@HOST:~/streams.texi. (This file is essentially identical to lispref/streams.texi). Works perfectly. Now I do the same for ~/sequences.texi. (Essentially identical to lispref/sequences.texi). Tramp complains about "Invalid base64 data", so it fails. I try again. Emacs crashes. I start Emacs under gdb. This time I visit sequences.texi first. No problem, no invalid base64 data. Then I try to visit streams.texi. Now this time Tramp claims streams.texi is the one with invalid data. I try again. Emacs crashes. Without the (global-auto-revert-mode 1), the crash does not occur, nor is there any mention of invalid base64 data. The (blink-cursor-mode 0) is only there because without it, my nervous system crashes, long before Emacs does. [bash2.05b.0 ~ 3 1] cd /home/teirllm/emacscvsdir/emacs/src [bash2.05b.0 ~/emacscvsdir/emacs/src 3 2] gdb emacs-21.3.50.1 GNU gdb Red Hat Linux 7.x (5.0rh-15) (MI_OUT) Copyright 2001 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-redhat-linux"... DISPLAY = :0 TERM = xterm Breakpoint 1 at 0x80dfc42: file emacs.c, line 433. Breakpoint 2 at 0x80c4554: file xterm.c, line 7838. (gdb) run -q --eval '(progn (blink-cursor-mode 0) (global-auto-revert-mode 1))' Starting program: /home/teirllm/emacscvsdir/emacs/src/emacs-21.3.50.1 -q --eval '(progn (blink-cursor-mode 0) (global-auto-revert-mode 1))' Breakpoint 1, abort () at emacs.c:433 433 kill (getpid (), SIGABRT); (gdb)