diff lisp/efs/fixup.el @ 22:8fc7fe29b841 r19-15b94

Import from CVS: tag r19-15b94
author cvs
date Mon, 13 Aug 2007 08:50:29 +0200
parents
children 8b8b7f3559a2
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lisp/efs/fixup.el	Mon Aug 13 08:50:29 2007 +0200
@@ -0,0 +1,38 @@
+;; -*-Emacs-Lisp-*-
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;
+;; File:         fixup.el
+;; Release:      $efs release: 1.15 $
+;; Version:      $Revision: 1.1 $
+;; RCS:          
+;; Description:  Fix up the load path for batch byte compilation of efs.
+;; Author:       Andy Norman, Dawn
+;; Created:      Sat Jan 30 00:21:33 1993
+;; Modified:     Fri Sep 16 20:01:50 1994 by sandy on ibm550
+;; Language:     Emacs-Lisp
+;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+(setq load-path
+      (append (list (substitute-in-file-name "$CWD")
+		    (substitute-in-file-name "$BDIR")
+		    (substitute-in-file-name "$VMDIR")
+		    )
+	      load-path))
+
+(setq byte-compile-warnings t)
+
+;; If the V18 btye-compiler is being used, this won't be around, so don't
+;; complain if we can't find it.
+(load "bytecomp-runtime" t t)
+
+(load "bytecomp" nil t)
+
+;; It seems efs causes the standard byte compiler some grief here.
+(setq max-lisp-eval-depth (* 2 max-lisp-eval-depth))
+
+;; If the user has the standard dired loaded, having dired
+;; featurep will cause efs-dired.el to attempt to do overloads.
+(delq 'dired features)
+
+;;; end of fixup.el