comparison lisp/loadup.el @ 4539:061e030e3270

Fix some bugs in load-history construction, built-in symbol file names. lib-src/ChangeLog addition: 2008-12-27 Aidan Kehoe <kehoea@parhasard.net> * make-docfile.c (main): Allow more than one -d argument, followed by a directory to change to. (put_filename): Don't strip directory information; with previous change, allows retrieval of Lisp function and variable origin files from #'built-in-symbol-file relative to lisp-directory. (scan_lisp_file): Don't add an extraneous newline after the file name, put_filename has added the newline already. lisp/ChangeLog addition: 2008-12-27 Aidan Kehoe <kehoea@parhasard.net> * loadup.el (load-history): Add the contents of current-load-list to load-history before clearing it. Move the variable declarations earlier in the file to a format understood by make-docfile.c. * custom.el (custom-declare-variable): Add the variable's symbol to the current file's load history entry correctly, don't use a cons. Eliminate a comment that we don't need to worry about, we don't need to check the `initialized' C variable in Lisp. * bytecomp.el (byte-compile-output-file-form): Merge Andreas Schwab's pre-GPLv3 GNU change of 19970831 here; treat #'custom-declare-variable correctly, generating the docstrings in a format understood by make-docfile.c. * loadhist.el (symbol-file): Correct behaviour for checking autoloaded macros and functions when supplied with a TYPE argument. Accept fully-qualified paths from #'built-in-symbol-file; if a path is not fully-qualified, return it relative to lisp-directory if the filename corresponds to a Lisp file, and relative to (concat source-directory "/src/") otherwise. * make-docfile.el (preloaded-file-list): Rationalise some let bindings a little. Use the "-d" argument to make-docfile.c to supply Lisp paths relative to lisp-directory, not absolutely. Add in loadup.el explicitly to the list of files to be processed by make-docfile.c--it doesn't make sense to add it to preloaded-file-list, since that is used for purposes of byte-compilation too. src/ChangeLog addition: 2008-12-27 Aidan Kehoe <kehoea@parhasard.net> * doc.c (Fbuilt_in_symbol_file): Return a subr's filename immediately if we've found it. Check for compiled function and compiled macro docstrings in DOC too, and return them if they exist. The branch of the if statement focused on functions may have executed, but we may still want to check variable bindings; an else clause isn't appropriate.
author Aidan Kehoe <kehoea@parhasard.net>
date Sat, 27 Dec 2008 14:05:50 +0000
parents 9fec7fedbf1b
children 3465c3161fea
comparison
equal deleted inserted replaced
4535:69a1eda3da06 4539:061e030e3270
29 ;;; Commentary: 29 ;;; Commentary:
30 30
31 ;; If you are wanting to add files to be dumped into your local version of 31 ;; If you are wanting to add files to be dumped into your local version of
32 ;; XEmacs, DO NOT add them here. Use site-init.el or site-load.el instead. 32 ;; XEmacs, DO NOT add them here. Use site-init.el or site-load.el instead.
33 33
34 ;; ***Note the docstrings for the variables in this file. They follow the
35 ;; conventions described in lib-src/make-docfile.c, and any new variables or
36 ;; functions added to this file should follow those conventions too, since
37 ;; this file is always loaded uncompiled, and the byte-compiler never gets a
38 ;; chance to format the docstrings in the way make-docfile.c understands.
39
34 ;; This is loaded into a bare XEmacs to make a dumpable one. 40 ;; This is loaded into a bare XEmacs to make a dumpable one.
35 41
36 ;;; Code: 42 ;;; Code:
37 43
38 ;; Help debug problems. 44 ;; Help debug problems.
45 ;(princ (format "lisp-directory: %S\n" lisp-directory)) 51 ;(princ (format "lisp-directory: %S\n" lisp-directory))
46 52
47 (when (fboundp 'error) 53 (when (fboundp 'error)
48 (error "loadup.el already loaded!")) 54 (error "loadup.el already loaded!"))
49 55
50 (defconst running-xemacs t 56 (defconst running-xemacs t "\
51 "Non-nil when the current emacs is XEmacs.") 57 Non-nil when the current emacs is XEmacs.")
52 58
53 ;; Can't make this constant for now because it causes an error in 59 ;; Can't make this constant for now because it causes an error in
54 ;; update-elc.el. 60 ;; update-elc.el.
55 (defvar source-lisp (file-name-directory (expand-file-name 61 (defvar source-lisp (file-name-directory (expand-file-name (nth 2 command-line-args))) "\
56 (nth 2 command-line-args))) 62 Root of tree containing the Lisp source code for the current build.
57 "Root of tree containing the Lisp source code for the current build.
58 Differs from `lisp-directory' if this XEmacs has been installed. ") 63 Differs from `lisp-directory' if this XEmacs has been installed. ")
59 64
60 (defconst build-directory (expand-file-name ".." invocation-directory) 65 (defconst build-directory (expand-file-name ".." invocation-directory) "\
61 "Root of tree containing object files and executables produced by build. 66 Root of tree containing object files and executables produced by build.
62 Differs from `source-directory' if configured with --srcdir option, a practice 67 Differs from `source-directory' if configured with --srcdir option, a practice
63 recommended for developers.") 68 recommended for developers.")
64 69
65 (defconst source-directory (expand-file-name ".." source-lisp) 70 (defconst source-directory (expand-file-name ".." source-lisp) "\
66 "Root of tree containing source code for the current build. 71 Root of tree containing source code for the current build.
67 Used during loadup and for documenting source of symbols defined in C.") 72 Used during loadup and for documenting source of symbols defined in C.")
68 73
69 (defvar preloaded-file-list nil 74 (defvar preloaded-file-list nil "\
70 "List of files preloaded into the XEmacs binary image.") 75 List of Lisp files preloaded into the XEmacs binary image,
76 with the exception of `loadup.el'.")
71 77
72 ;(start-profiling) 78 ;(start-profiling)
73 79
74 (let ((gc-cons-threshold 80 (let ((gc-cons-threshold
75 ;; setting it low makes loadup incredibly fucking slow. 81 ;; setting it low makes loadup incredibly fucking slow.
204 ;; Note: You can cause additional libraries to be preloaded 210 ;; Note: You can cause additional libraries to be preloaded
205 ;; by writing a site-init.el that loads them. 211 ;; by writing a site-init.el that loads them.
206 ;; See also "site-load" above. 212 ;; See also "site-load" above.
207 (when (stringp site-start-file) 213 (when (stringp site-start-file)
208 (load "site-init" t)) 214 (load "site-init" t))
209 (setq current-load-list nil) 215 ;; Add information from this file to the load history:
216 (setq load-history (cons (nreverse current-load-list) load-history)
217 ;; Clear current-load-list; this (and adding information to
218 ;; load-history) is normally done in lread.c after reading the
219 ;; entirety of a file, something which never happens for loadup.el.
220 current-load-list nil)
221 ;; Make the path to this file look a little nicer:
222 (setcar (car load-history) (file-truename (caar load-history)))
223
210 (garbage-collect) 224 (garbage-collect)
211 225
212 ;;; At this point, we're ready to resume undo recording for scratch. 226 ;;; At this point, we're ready to resume undo recording for scratch.
213 (buffer-enable-undo "*scratch*") 227 (buffer-enable-undo "*scratch*")
214 228