From xemacs-m  Mon Feb 10 22:32:05 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id WAA18060
	for <xemacs-beta@xemacs.org>; Mon, 10 Feb 1997 22:32:03 -0600 (CST)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.5/8.8.5) id UAA08752;
	Mon, 10 Feb 1997 20:43:29 -0800
To: xemacs-beta@xemacs.org
Subject: MSefs-1.15-x2 integration with XEmacs
X-Url: http://www.miranova.com/%7Esteve/
Mail-Copies-To: never
X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5"
 f8*@r4ipO6Jl!:Ccq<xoV[Qz2u8<8-+Vwf2gzJ44lf_/y9OaQ`@#Q65{U4/TC)i2`~/M&QI$X>p:9I
 OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+
X-Attribution: sb
From: Steven L Baur <steve@miranova.com>
Mime-Version: 1.0 (generated by tm-edit 7.103)
Content-Type: text/plain; charset=US-ASCII
Date: 10 Feb 1997 20:43:25 -0800
Message-ID: <m2eneot0k2.fsf@altair.xemacs.org>
Lines: 50
X-Mailer: Gnus v5.4.12/XEmacs 20.1

O.K.  It looks like I've gotten Michael Sperber's efs 1.15 mods to
work integrated with the XEmacs distribution so it's going into the
next betas.  I noticed one problem off the bat: an erroneous reference
to dired-find-file-other-screen, which should be
dired-find-file-other-frame.  Another problem is a duplicate
auto-save.el.

The old lisp/dired directory has been removed and replaced by
lisp/efs.  One autoloaded symbol definitely going away is
'ange-ftp-hook-function, so it can be used in a feature test.

None of my color faces from dired-xemacs-highlight work. :-( Would
anyone with colorful, angry fruit salad new dired defaults please
share their initialization?

Would an efs expert please update the following code from
sample.emacs:
;;; ********************
;;; Load ange-ftp, which uses the FTP protocol as a pseudo-filesystem.
;;; When this is loaded, the pathname syntax /user@host:/remote/path
;;; refers to files accessible through ftp.
;;;
(require 'dired)
(require 'ange-ftp)
(setq ange-ftp-default-user "anonymous"      ; id to use for /host:/remote/path
      ange-ftp-generate-anonymous-password t ; use $USER@`hostname`
      ange-ftp-binary-file-name-regexp "."   ; always transfer in binary mode
      )

;;; ********************
;;; Load the auto-save.el package, which lets you put all of your autosave
;;; files in one place, instead of scattering them around the file system.
;;;
(setq auto-save-directory (expand-file-name "~/autosave/")
      auto-save-directory-fallback auto-save-directory
      auto-save-hash-p nil
      ange-ftp-auto-save t
      ange-ftp-auto-save-remotely nil
      ;; now that we have auto-save-timeout, let's crank this up
      ;; for better interactive response.
      auto-save-interval 2000
      )
;; We load this afterwards because it checks to make sure the
;; auto-save-directory exists (creating it if not) when it's loaded.
(require 'auto-save)


-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be billed at $250/message.

