comparison lisp/update-elc-2.el @ 528:ef4d2466a29c

[xemacs-hg @ 2001-05-10 09:59:45 by ben] implement user-name-all-completions under Windows. xemacs.mak: need another lib (netapi32.lib) for user-name-all-completions. emacs.c: create new function force-debugging-signal (only when DEBUG_XEMACS) to breakpoint or abort to the debugger. mule\mule-coding.el, file-coding.c, file-coding.h, lisp.h: move coding-system-charset to lisp to avoid doc warning. autoload.el, packages.el, startup.el, update-elc-2.el, update-elc.el: Rewrite much of the bootstrapping process to be more robust, and in particular to rebuild the auto-autoloads and custom-loads files no matter what state (including missing) they're currently in. xemacs.mak: remove autoload-building target. Makefile.in.in: remove autoload targets.
author ben
date Thu, 10 May 2001 09:59:57 +0000
parents 576fb035e263
children af57a77cbc92
comparison
equal deleted inserted replaced
527:7b35ad872326 528:ef4d2466a29c
140 (do-update-elc-2 dir nil nil) 140 (do-update-elc-2 dir nil nil)
141 (message "Removing old or spurious .elcs in directory tree `%s'...done" 141 (message "Removing old or spurious .elcs in directory tree `%s'...done"
142 dir) 142 dir)
143 (message "Recompiling updated .els in directory tree `%s'..." dir) 143 (message "Recompiling updated .els in directory tree `%s'..." dir)
144 (do-update-elc-2 dir t nil) 144 (do-update-elc-2 dir t nil)
145 (message "Recompiling updated .els in directory tree `%s'...done" dir)) 145 (message "Recompiling updated .els in directory tree `%s'...done" dir)
146 ;; don't depend on being able to autoload `update-autoload-files'!
147 (load "autoload")
148 (update-autoload-files (list dir))
149 (byte-recompile-file (expand-file-name "auto-autoloads.el" dir) 0)
150 (when (featurep 'mule)
151 (update-autoload-files (list (expand-file-name "mule" dir)))
152 (byte-recompile-file (expand-file-name "mule/auto-autoloads.el" dir) 0))
153 ;; likewise here.
154 (load "cus-dep")
155 (Custom-make-dependencies dir)
156 (byte-recompile-file (expand-file-name "custom-load.el" dir) 0)
157 (when (featurep 'mule)
158 (Custom-make-dependencies (expand-file-name "mule" dir))
159 (byte-recompile-file (expand-file-name "mule/custom-load.el" dir) 0))
160 )
146 (setq command-line-args-left nil)) 161 (setq command-line-args-left nil))
147 162
148 ;;; update-elc-2.el ends here 163 ;;; update-elc-2.el ends here