From: Richard M. Stallman Date: Tue, 11 Oct 1994 08:22:38 +0000 (+0000) Subject: (normal-top-level-add-to-load-path): New function. X-Git-Tag: emacs-19.34~6411 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e87a730999bf986dae66de6c4ac020efc40dd57d;p=emacs.git (normal-top-level-add-to-load-path): New function. (normal-top-level): Load subdirs.el in each dir in load-path. --- diff --git a/lisp/startup.el b/lisp/startup.el index e71792f724f..081b3aed126 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -160,10 +160,25 @@ specified by the LC_ALL, LC_CTYPE and LANG environment variables.") (defvar init-file-had-error nil) +;; This function is called from the subdirs.el file. +(defun normal-top-level-add-to-load-path (dirs) + (let ((tail (member default-directory load-path))) + (setcdr tail (append (mapcar 'expand-file-name dirs) (cdr tail))))) + (defun normal-top-level () (if command-line-processed (message "Back to top level.") (setq command-line-processed t) + ;; Look in each dir in load-path for a subdirs.el file. + ;; If we find one, load it, which will add the appropriate subdirs + ;; of that dir into load-path, + (let ((tail load-path) + new) + (while tail + (setq new (cons (car tail) new)) + (let ((default-directory (car tail))) + (load (expand-file-name "subdirs.el" (car tail)) t t t)) + (setq tail (cdr tail)))) (if (not (eq system-type 'vax-vms)) (progn ;; If the PWD environment variable isn't accurate, delete it.