comparison lisp/startup.el @ 67076:8d65a4f81b32

(command-line): Make sure that loaddefs.el is handled correctly in load-history.
author Luc Teirlinck <teirllm@auburn.edu>
date Tue, 22 Nov 2005 03:32:50 +0000
parents 1dd15c8aa21e
children f69aa26e69fd 69e184bbba16
comparison
equal deleted inserted replaced
67075:41bc39aa190f 67076:8d65a4f81b32
645 (setq load-history 645 (setq load-history
646 (mapcar (lambda (elt) 646 (mapcar (lambda (elt)
647 (if (and (stringp (car elt)) 647 (if (and (stringp (car elt))
648 (not (file-name-absolute-p (car elt)))) 648 (not (file-name-absolute-p (car elt))))
649 (cons (locate-file (car elt) load-path 649 (cons (locate-file (car elt) load-path
650 load-suffixes) 650 (append load-suffixes '("")))
651 (cdr elt)) 651 (cdr elt))
652 elt)) 652 elt))
653 load-history)) 653 load-history))
654 654
655 ;; Convert the arguments to Emacs internal representation. 655 ;; Convert the arguments to Emacs internal representation.