From xemacs-m  Fri Feb 21 08:11:15 1997
Received: from macon.informatik.uni-tuebingen.de (macon2.Informatik.Uni-Tuebingen.De [134.2.13.2])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id IAA29269
	for <xemacs-beta@xemacs.org>; Fri, 21 Feb 1997 08:11:14 -0600 (CST)
Received: from modas.informatik.uni-tuebingen.de (modas.Informatik.Uni-Tuebingen.De [134.2.12.3]) by macon.informatik.uni-tuebingen.de (8.8.4/8.8.3/AIX-4.1/WSI-1.0) with SMTP id PAA19830 for <xemacs-beta@xemacs.org>; Fri, 21 Feb 1997 15:11:03 +0100
Received: by modas.informatik.uni-tuebingen.de (AIX 4.1/UCB 5.64/4.03)
          id AA19638; Fri, 21 Feb 1997 15:11:01 +0100
Sender: sperber@informatik.uni-tuebingen.de
To: xemacs-beta@xemacs.org
Subject: Re: find-file
References: <199702211306.OAA06059@jf-unix.nlh.no>
Mime-Version: 1.0 (generated by tm-edit 7.105)
Content-Type: text/plain; charset=US-ASCII
From: sperber@informatik.uni-tuebingen.de (Michael Sperber [Mr. Preprocessor])
Date: 21 Feb 1997 15:11:01 +0100
In-Reply-To: Hans Olav Eggestad's message of Fri, 21 Feb 1997 14:06:44 +0100
Message-Id: <y9lpvxuxn9m.fsf@modas.informatik.uni-tuebingen.de>
Lines: 32
X-Mailer: Gnus v5.4.13/XEmacs 20.1

>>>>> "Hans" == Hans Olav Eggestad <olav@jf-unix.nlh.no> writes:

Hans> In XEmacs 19.15-b94 [Lucid] (sparc-sun-solaris2.5) of Thu Feb 20 1997 on jf-unix

Hans> Unable to open file, pressing f3 gives:

Hans> Signaling: (void-variable default-dir-emacs-version)
Hans>   default-directory()

This was a patch gone havoc.  Apply the following patch suggested by
Jens Lautenbacher.  Something similar will be in the next beta.

Cheers =8-} Mike

*** default-dir.el	Sun Feb 16 22:06:56 1997
--- ../../../../src/xemacs-19.15-b94/lisp/efs/default-dir.el	Sun Feb 16 22:20:20 1997
***************
*** 52,58 ****
  Will use the variable default-directory-function if it non-nil."
    (if default-directory-function
        (funcall default-directory-function)
!     (if (eq default-dir-emacs-variant 'xemacs)
  	(abbreviate-file-name default-directory t)
        (abbreviate-file-name default-directory))))
  
--- 52,58 ----
  Will use the variable default-directory-function if it non-nil."
    (if default-directory-function
        (funcall default-directory-function)
!     (if (eq default-dir-emacs-version 'xemacs)
  	(abbreviate-file-name default-directory t)
        (abbreviate-file-name default-directory))))

