From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: an0 Newsgroups: gmane.emacs.devel Subject: "tramp-completion-file-name-handler: Recursive load" with the trunk code Date: Wed, 19 Mar 2008 11:45:04 +0800 Message-ID: <98e737510803182045n6dddd2ffxe237dfd8e58b56aa@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1205898338 9647 80.91.229.12 (19 Mar 2008 03:45:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 19 Mar 2008 03:45:38 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Mar 19 04:46:07 2008 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 1JbpFc-0005xx-LG for ged-emacs-devel@m.gmane.org; Wed, 19 Mar 2008 04:46:05 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JbpF2-0003uN-Ki for ged-emacs-devel@m.gmane.org; Tue, 18 Mar 2008 23:45:28 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JbpEj-0003pB-97 for emacs-devel@gnu.org; Tue, 18 Mar 2008 23:45:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JbpEh-0003oW-Lm for emacs-devel@gnu.org; Tue, 18 Mar 2008 23:45:08 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JbpEh-0003oQ-H1 for emacs-devel@gnu.org; Tue, 18 Mar 2008 23:45:07 -0400 Original-Received: from fk-out-0910.google.com ([209.85.128.186]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JbpEg-0001ZO-SP for emacs-devel@gnu.org; Tue, 18 Mar 2008 23:45:07 -0400 Original-Received: by fk-out-0910.google.com with SMTP id 26so256861fkx.10 for ; Tue, 18 Mar 2008 20:45:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=XxRcb2MZ0jhYo+ibhQj7QdMg+xjPvIAQ/DVVN3ZKPfc=; b=hyLHh9O9py1IX6UCI3vpWgEbuMgUEMeoqcHwtYEk5xsW9OsSyjVOAmUtOMD74sRgaBwUwhF/uqzABN3gS7uA16gfVICZFSdbbqINFIKWNI29HufKO+F6SSXfNEJApuLUEYdftn+Esqi+qxB/G6To7oAwwX+HIdoEl2WoIHdNcRE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=OJYYQ18h+0mAcXF6tXG/aA0m2O3ELT2FycWEfKAE4VFq/8ZMoGF5AL54Z+fkqT714mRXkJ9FBOOzsHfjR0o/g85JvhhlWc2LR6Dxe3oGKCJEGdnzfPZxZVj9Y0buOs+/XMA1S9EuixZx57Pu6bgdZUBvEiYox5uBMohZMSrqBn4= Original-Received: by 10.78.138.14 with SMTP id l14mr4494287hud.63.1205898304486; Tue, 18 Mar 2008 20:45:04 -0700 (PDT) Original-Received: by 10.78.121.13 with HTTP; Tue, 18 Mar 2008 20:45:04 -0700 (PDT) Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) 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:92957 Archived-At: I met an error as follows starting emacs compiled from today's trunk code: tramp-completion-file-name-handler: Recursive load: "/home/xxx/share/emacs/23.0.60/lisp/net/tramp.elc", "/home/xxx/share/emacs/23.0.60/lisp/net/tramp.elc", "/home/xxx/share/emacs/23.0.60/lisp/net/tramp.elc", "/home/xxx/share/emacs/23.0.60/lisp/net/tramp.elc", "/home/xxx/share/emacs/23.0.60/lisp/net/tramp.elc", "/home/xxx/share/emacs/23.0.60/lisp/ibuffer.elc" And any subsequent nontrivial operations cause the same error to recur again and again, which renders my emacs completely useless. After some tracing, I found it was probably caused by ido, because the problem disappeared after I commented out following code in my .emacs: (require 'ido) (ido-mode 1)