]> git.eshelyaron.com Git - emacs.git/commitdiff
* loadup.el (top level): Adjust load path if program name is
authorKen Raeburn <raeburn@raeburn.org>
Tue, 31 Oct 2000 15:58:25 +0000 (15:58 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Tue, 31 Oct 2000 15:58:25 +0000 (15:58 +0000)
"../src/bootstrap-emacs", in case it's not dumped and thus the load path
adjustment hasn't already been done.

lisp/ChangeLog
lisp/loadup.el

index 112fdfd6f4fc45bf0dfb717b6b450ab6793b44e9..1c0c2c8ece1b90732aedbe9b319829d7112ce5a6 100644 (file)
@@ -1,3 +1,9 @@
+2000-10-31  Ken Raeburn  <raeburn@gnu.org>
+
+       * loadup.el (top level): Adjust load path if program name is
+       "../src/bootstrap-emacs", in case it's not dumped and thus the
+       load path adjustment hasn't already been done.
+
 2000-10-31  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
 
        * ps-print.el: Fix bug on selected pages for printing.  Use
index d97613f94b1c4f6f86aaafa94fddd99a279f65bf..237ed920f601fdab2c5aecdbd8ca8e5acc8445a3 100644 (file)
@@ -31,7 +31,9 @@
 ;; add subdirectories to the load-path for files that might
 ;; get autoloaded when bootstrapping
 (if (or (equal (nth 3 command-line-args) "bootstrap")
-       (equal (nth 4 command-line-args) "bootstrap"))
+       (equal (nth 4 command-line-args) "bootstrap")
+       ;; in case CANNOT_DUMP
+       (equal (nth 0 command-line-args) "../src/bootstrap-emacs"))
     (let ((path (car load-path)))
       (setq load-path (list path
                            (expand-file-name "emacs-lisp" path)