File: fixup.el

package info (click to toggle)
xemacs20 20.4-13
  • links: PTS
  • area: main
  • in suites: slink
  • size: 67,324 kB
  • ctags: 57,643
  • sloc: lisp: 586,197; ansic: 184,662; sh: 4,296; asm: 3,179; makefile: 2,021; perl: 1,059; csh: 96; sed: 22
file content (38 lines) | stat: -rw-r--r-- 1,203 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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