changeset 9553:6cf77973c97f

Delete code to write subdirs.el.
author Richard M. Stallman <rms@gnu.org>
date Sun, 16 Oct 1994 06:17:57 +0000
parents c1d477aec340
children d3f3f3db986d
files lisp/loadup.el
diffstat 1 files changed, 0 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/loadup.el	Sun Oct 16 02:37:57 1994 +0000
+++ b/lisp/loadup.el	Sun Oct 16 06:17:57 1994 +0000
@@ -32,26 +32,6 @@
 ;;; We don't want to have any undo records in the dumped Emacs.
 (buffer-disable-undo "*scratch*")
 
-;; Write a file subdirs.el into the Lisp directory
-;; containing the names of the subdirs of that directory
-;; which we should check for Lisp files.
-(message "Writing subdirs.el...")
-(let ((files (directory-files "../lisp/" nil nil t))
-      new)
-  (while files
-    (if (and (null (member (car files) '("." ".." "term" "RCS")))
-	     (null (string-match "\\.elc?$" (car files)))
-	     (file-directory-p (expand-file-name (car files) "../lisp/")))
-	(setq new (cons (car files) new)))
-    (setq files (cdr files)))
-  (insert ";; In load-path, after this directory should come\n")
-  (insert ";; certain of its subdirectories.  Here we specify them.\n")
-  (prin1 (list 'normal-top-level-add-to-load-path
-	       (list 'quote new)) (current-buffer))
-  (write-region (point-min) (point-max)
-		(expand-file-name "subdirs.el" "../lisp/"))
-  (erase-buffer))
-
 (load "subr")
 (garbage-collect)
 (load "byte-run")