home *** CD-ROM | disk | FTP | other *** search
-
- The motivation for the enclosed patch is a directory layout consistent
- with the defaults for emacs 18. I realize that this can be sym-ulated
- with links, but with the enclosed patch such symlinks are unnecessary.
-
-
- *** ../lemacs-19.6/lisp/prim/startup.el Wed Mar 24 18:18:00 1993
- --- lisp/prim/startup.el Tue May 4 19:15:05 1993
- ***************
- *** 509,514 ****
- --- 509,522 ----
- (file-directory-p (expand-file-name "../etc" dir))
- (expand-file-name "../" dir))
- ;;
- + ;; If the parent of this directory has a plausible root, use it.
- + ;;
- + (and (file-directory-p (expand-file-name
- + (concat "../" name "/lisp/prim") dir))
- + (file-directory-p (expand-file-name
- + (concat "../" name "/etc") dir))
- + (expand-file-name (concat "../" name) dir))
- + ;;
- ;; If that doesn't work, and the emacs executable is a symlink, then
- ;; chase the link and try again there.
- ;;
-
-
-