Skip to content

Commit

Permalink
site-start: add comment regarding reordering of load path
Browse files Browse the repository at this point in the history
(no reordering was done)
  • Loading branch information
davidswelt committed Dec 23, 2010
1 parent c4b0085 commit 810e5e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions aquamacs/src/site-lisp/site-start.el
Expand Up @@ -85,14 +85,15 @@ Changes in this code are ignored during the online version check.")
;; load path
;;(normal-top-level-add-subdirs-to-load-path) ; no need to do this is in site-start.

;; let's not do this, as it precludes users from providing
;; alternative versions of some libraries in user-level
;; directories: [time savings: only 10ms]
;; (mapc
;; (lambda (f)
;; (let ((fn (expand-file-name f data-directory)))
;; (delete fn load-path)
;; (setq load-path (cons fn load-path))))
;; '( "../lisp/aquamacs/macosx" "../lisp" "../lisp/aquamacs"))
;; "../lisp/aquamacs/tabbar" for some reason, this prevents it from loading aquamacs-tabbar later on
;; undiagnosed. commented out load-path priorisiation for this reason.
;; '( "../lisp/aquamacs/macosx" "../lisp" "../lisp/aquamacs"))

(require 'aquamacs)
(require 'aquamacs-aux) ;; calls (aquamacs-setup)
Expand Down

0 comments on commit 810e5e8

Please sign in to comment.