From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: bug#8964: 24.0.50; `find-file' triggers the debugger when called with a nonexistent remote file Date: Thu, 30 Jun 2011 08:19:50 -0400 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1309437961 7918 80.91.229.12 (30 Jun 2011 12:46:01 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 30 Jun 2011 12:46:01 +0000 (UTC) Cc: 8964@debbugs.gnu.org To: Dani Moncayo Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Jun 30 14:45:57 2011 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QcGd0-0007Mn-4n for geb-bug-gnu-emacs@m.gmane.org; Thu, 30 Jun 2011 14:45:54 +0200 Original-Received: from localhost ([::1]:42968 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QcGcy-00009h-Dw for geb-bug-gnu-emacs@m.gmane.org; Thu, 30 Jun 2011 08:45:52 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:55104) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QcGE3-0002WD-2O for bug-gnu-emacs@gnu.org; Thu, 30 Jun 2011 08:20:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QcGE1-00031f-CB for bug-gnu-emacs@gnu.org; Thu, 30 Jun 2011 08:20:06 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:50470) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QcGE0-00030C-Pt for bug-gnu-emacs@gnu.org; Thu, 30 Jun 2011 08:20:05 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.69) (envelope-from ) id 1QcGDz-0000NU-Ex; Thu, 30 Jun 2011 08:20:03 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 30 Jun 2011 12:20:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 8964 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 8964-submit@debbugs.gnu.org id=B8964.13094363991438 (code B ref 8964); Thu, 30 Jun 2011 12:20:03 +0000 Original-Received: (at 8964) by debbugs.gnu.org; 30 Jun 2011 12:19:59 +0000 Original-Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QcGDu-0000N9-Lh for submit@debbugs.gnu.org; Thu, 30 Jun 2011 08:19:59 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QcGDs-0000Mx-O5 for 8964@debbugs.gnu.org; Thu, 30 Jun 2011 08:19:57 -0400 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1QcGDm-0004Fx-W4; Thu, 30 Jun 2011 08:19:51 -0400 In-reply-to: (message from Dani Moncayo on Thu, 30 Jun 2011 11:40:49 +0200) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list Resent-Date: Thu, 30 Jun 2011 08:20:03 -0400 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:47615 Archived-At: > Date: Thu, 30 Jun 2011 11:40:49 +0200 > From: Dani Moncayo > > >From "emacs -Q": > 1. Eval this, literally: (find-file "/user@host:/file") > 2. Give any random password (for user@host). > > Then, the a debugger window pops up, with this text: > > Debugger entered--Lisp error: (ftp-error #("FTP Error: OPEN request > failed: Unknown host host." 32 50 (fontified nil front-sticky (field Do you eval this in the *scratch* buffer? If so, this is a feature: the Lisp interaction mode in *scratch* sets up things so that debug-on-error is non-nil, which causes every call to `error' to enter the debugger. Normally, `error' just aborts the current command and displays an error message. If you don't eval in *scratch*, please tell exactly how you do it.