Mercurial > hg > xemacs-beta
comparison lisp/update-elc.el @ 2548:c4c8a36043be
[xemacs-hg @ 2005-02-03 07:11:19 by ben]
behavior ws #4: package-suppress, autoload update/sync, add easy-mmode/regexp-opt to core
lread.c, lisp.h: Remove undeeded Vload_file_name_internal_the_purecopy,
Qload_file_name -- use internal_bind_lisp_object instead of
specbind.
Add load-suppress-alist.
* easy-mmode.el, regexp-opt.el:
Move these files into core.
Uncomment stuff depending on new custom.el.
autoload.el: Removed.
Major update. Sync with FSF 21.2.
Create the ability to make custom-defines files.
update-elc-2.el, update-elc.el: Rewrite to use new autoload API.
update-elc.el: Add easy-mmode.
author | ben |
---|---|
date | Thu, 03 Feb 2005 07:11:28 +0000 |
parents | f4e405a9d18d |
children | 1ee424086c62 |
comparison
equal
deleted
inserted
replaced
2547:a9527fcdf77f | 2548:c4c8a36043be |
---|---|
104 | 104 |
105 ;; Lisp files not in `lisp-files-needed-for-byte-compilation' that need | 105 ;; Lisp files not in `lisp-files-needed-for-byte-compilation' that need |
106 ;; early byte compilation. These are files loaded by update-elc.el in | 106 ;; early byte compilation. These are files loaded by update-elc.el in |
107 ;; order to do the compilation of all the rest of the files. | 107 ;; order to do the compilation of all the rest of the files. |
108 (defvar lisp-files-needing-early-byte-compilation | 108 (defvar lisp-files-needing-early-byte-compilation |
109 '(;"easy-mmode" | 109 '("easy-mmode" |
110 "autoload" | 110 "autoload" |
111 "shadow" | 111 "shadow" |
112 "cl-macs")) | 112 "cl-macs")) |
113 | 113 |
114 (defvar unbytecompiled-lisp-files | 114 (defvar unbytecompiled-lisp-files |
310 (append | 310 (append |
311 (if (or need-to-rebuild-autoloads | 311 (if (or need-to-rebuild-autoloads |
312 need-to-rebuild-mule-autoloads) | 312 need-to-rebuild-mule-autoloads) |
313 (list "-l" "autoload")) | 313 (list "-l" "autoload")) |
314 (if need-to-rebuild-autoloads | 314 (if need-to-rebuild-autoloads |
315 (list "-f" "autoload-update-directory-autoloads" | 315 (list "-f" "batch-update-directory-autoloads" |
316 "auto" source-lisp)) | 316 "auto" source-lisp)) |
317 (if need-to-rebuild-mule-autoloads | 317 (if need-to-rebuild-mule-autoloads |
318 (list "-f" "autoload-update-directory-autoloads" | 318 (list "-f" "batch-update-directory-autoloads" |
319 "mule" source-lisp-mule)) | 319 "mule" source-lisp-mule)) |
320 (if need-to-recompile-autoloads | 320 (if need-to-recompile-autoloads |
321 (list "-f" "batch-byte-compile-one-file" | 321 (list "-f" "batch-byte-compile-one-file" |
322 aa-lisp)) | 322 aa-lisp)) |
323 (if need-to-recompile-mule-autoloads | 323 (if need-to-recompile-mule-autoloads |