From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: bug fix for files.el change 1.633 (dired-directory not defined) Date: Thu, 13 Feb 2003 05:09:26 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <15945.64871.469361.375781@hkn.eecs.berkeley.edu> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1045131328 8393 80.91.224.249 (13 Feb 2003 10:15:28 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 13 Feb 2003 10:15:28 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18jGLq-00021G-00 for ; Thu, 13 Feb 2003 11:12:18 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18jGYF-0002kf-00 for ; Thu, 13 Feb 2003 11:25:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18jGN0-00066Y-06 for emacs-devel@quimby.gnus.org; Thu, 13 Feb 2003 05:13:30 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18jGMb-0005l1-00 for emacs-devel@gnu.org; Thu, 13 Feb 2003 05:13:05 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18jGJQ-0003eX-00 for emacs-devel@gnu.org; Thu, 13 Feb 2003 05:09:49 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18jGJ4-0003NX-00 for emacs-devel@gnu.org; Thu, 13 Feb 2003 05:09:26 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 18jGJ4-00023z-00; Thu, 13 Feb 2003 05:09:26 -0500 Original-To: quarl@quarl.org In-reply-to: <15945.64871.469361.375781@hkn.eecs.berkeley.edu> (message from Karl Chen on Tue, 11 Feb 2003 23:53:11 -0800) Original-cc: lektu@terra.es X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:11620 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:11620 The recent change to files.el breaks `find-alternate-file' until dired.el is loaded. It uses the variable `dired-directory' which is defined only in dired.el. This patch below fixes it. Putting an autoload cookie on that variable is a cleaner fix.