home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / bug-lucid-emacs / text0142.txt < prev    next >
Encoding:
Text File  |  1993-07-04  |  938 b   |  28 lines

  1.  
  2. The motivation for the enclosed patch is a directory layout consistent
  3. with the defaults for emacs 18.  I realize that this can be sym-ulated
  4. with links, but with the enclosed patch such symlinks are unnecessary.
  5.  
  6.  
  7. *** ../lemacs-19.6/lisp/prim/startup.el    Wed Mar 24 18:18:00 1993
  8. --- lisp/prim/startup.el    Tue May  4 19:15:05 1993
  9. ***************
  10. *** 509,514 ****
  11. --- 509,522 ----
  12.         (file-directory-p (expand-file-name "../etc" dir))
  13.         (expand-file-name "../" dir))
  14.        ;;
  15. +      ;; If the parent of this directory has a plausible root, use it.
  16. +      ;;
  17. +      (and (file-directory-p (expand-file-name
  18. +                  (concat "../" name "/lisp/prim") dir))
  19. +       (file-directory-p (expand-file-name
  20. +                  (concat "../" name "/etc") dir))
  21. +       (expand-file-name (concat "../" name) dir))
  22. +      ;;
  23.        ;; If that doesn't work, and the emacs executable is a symlink, then
  24.        ;; chase the link and try again there.
  25.        ;;
  26.  
  27.  
  28.