comparison lisp/update-elc-2.el @ 4246:9fec7fedbf1b

[xemacs-hg @ 2007-10-31 11:21:02 by aidan] Use correct coding system information for Installation-string.
author aidan
date Wed, 31 Oct 2007 11:21:15 +0000
parents c4c8a36043be
children 308d34e9f07d
comparison
equal deleted inserted replaced
4245:119b227b734c 4246:9fec7fedbf1b
63 "^update-elc-2\\.el$" 63 "^update-elc-2\\.el$"
64 "^dumped-lisp\\.el$" 64 "^dumped-lisp\\.el$"
65 "^make-docfile\\.el$" 65 "^make-docfile\\.el$"
66 "^site-start\\.el$" 66 "^site-start\\.el$"
67 "^site-load\\.el$" 67 "^site-load\\.el$"
68 "^site-init\\.el$" 68 "^site-init\\.el$"))
69 "^version\\.el$"))
70 69
71 (defvar dirfiles-table (make-hash-table :test 'equal)) 70 (defvar dirfiles-table (make-hash-table :test 'equal))
72 71
73 ;; SEEN accumulates the list of already-handled dirs. 72 ;; SEEN accumulates the list of already-handled dirs.
74 (defun do-update-elc-2 (dir compile-stage-p seen) 73 (defun do-update-elc-2 (dir compile-stage-p seen)
188 (load "cus-dep") 187 (load "cus-dep")
189 (Custom-make-dependencies dir) 188 (Custom-make-dependencies dir)
190 (byte-recompile-file (expand-file-name "custom-load.el" dir) 0) 189 (byte-recompile-file (expand-file-name "custom-load.el" dir) 0)
191 (when (featurep 'mule) 190 (when (featurep 'mule)
192 (Custom-make-dependencies (expand-file-name "mule" dir)) 191 (Custom-make-dependencies (expand-file-name "mule" dir))
193 (byte-recompile-file (expand-file-name "mule/custom-load.el" dir) 0)) 192 (byte-recompile-file (expand-file-name "mule/custom-load.el" dir) 0)
194 ) 193 ;; See the eval-when-compile in the definition of
194 ;; Installation-file-coding-system; if the file name sniffing or the
195 ;; available coding systems have changed, version.elc should be
196 ;; rebuilt.
197 (byte-recompile-file (expand-file-name "version.el" dir) 0)))
195 (setq command-line-args-left nil)) 198 (setq command-line-args-left nil))
196 199
197 ;;; update-elc-2.el ends here 200 ;;; update-elc-2.el ends here