* gnus-vers.el (gnus-revision-number): Increment to 09.
[elisp/gnus.git-] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;;      Katsumi Yamaoka <yamaoka@jpl.org>
7 ;; Version: 4.19
8 ;; Keywords: news, path
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 ;; Set coding priority of Shift-JIS to the bottom.
32 (if (featurep 'xemacs)
33     (defalias 'set-coding-priority 'ignore)
34   (defalias 'coding-priority-list 'ignore)
35   (defalias 'set-coding-priority-list 'ignore))
36 (cond ((and (featurep 'xemacs) (featurep 'mule))
37        (if (memq 'shift-jis (coding-priority-list))
38            (set-coding-priority-list
39             (append (delq 'shift-jis (coding-priority-list)) '(shift-jis)))))
40       ((boundp 'MULE)
41        (put '*coding-category-sjis* 'priority (length *predefined-category*)))
42       ((featurep 'mule)
43        (if (memq 'coding-category-sjis coding-category-list)
44            (set-coding-priority
45             (append (delq 'coding-category-sjis
46                           (copy-sequence coding-category-list))
47                     '(coding-category-sjis))))))
48
49 (defalias 'facep 'ignore)
50
51 (require 'cl)
52 (unless (dolist (var nil t))
53   ;; Override the macro `dolist' which may have been defined in egg.el.
54   (load "cl-macs" nil t))
55
56 (defvar srcdir (or (getenv "srcdir") "."))
57
58 (defvar dgnushack-w3-directory (let ((w3dir (getenv "W3DIR")))
59                                  (unless (zerop (length w3dir))
60                                    (file-name-as-directory w3dir))))
61
62 (let ((urldir (getenv "URLDIR")))
63   (unless (zerop (length urldir))
64     (setq urldir (file-name-as-directory urldir))
65     (push (file-name-as-directory urldir) load-path))
66   (when (and dgnushack-w3-directory
67              (not (string-equal urldir dgnushack-w3-directory)))
68     (push dgnushack-w3-directory load-path)))
69
70 ;; If we are building w3 in a different directory than the source
71 ;; directory, we must read *.el from source directory and write *.elc
72 ;; into the building directory.  For that, we define this function
73 ;; before loading bytecomp.  Bytecomp doesn't overwrite this function.
74 (defun byte-compile-dest-file (filename)
75   "Convert an Emacs Lisp source file name to a compiled file name.
76  In addition, remove directory name part from FILENAME."
77   (setq filename (byte-compiler-base-file-name filename))
78   (setq filename (file-name-sans-versions filename))
79   (setq filename (file-name-nondirectory filename))
80   (if (memq system-type '(win32 w32 mswindows windows-nt))
81       (setq filename (downcase filename)))
82   (cond ((eq system-type 'vax-vms)
83          (concat (substring filename 0 (string-match ";" filename)) "c"))
84         ((string-match emacs-lisp-file-regexp filename)
85          (concat (substring filename 0 (match-beginning 0)) ".elc"))
86         (t (concat filename ".elc"))))
87
88 (require 'bytecomp)
89
90 (when (boundp 'MULE)
91   (let (current-load-list)
92     ;; Make the function to be silent at compile-time.
93     (defun locate-library (library &optional nosuffix)
94       "Show the full path name of Emacs library LIBRARY.
95 This command searches the directories in `load-path' like `M-x load-library'
96 to find the file that `M-x load-library RET LIBRARY RET' would load.
97 Optional second arg NOSUFFIX non-nil means don't add suffixes `.elc' or `.el'
98 to the specified name LIBRARY (a la calling `load' instead of `load-library')."
99       (interactive "sLocate library: ")
100       (catch 'answer
101         (mapcar
102          '(lambda (dir)
103             (mapcar
104              '(lambda (suf)
105                 (let ((try (expand-file-name (concat library suf) dir)))
106                   (and (file-readable-p try)
107                        (null (file-directory-p try))
108                        (progn
109                          (or noninteractive
110                              (message "Library is file %s" try))
111                          (throw 'answer try)))))
112              (if nosuffix '("") '(".elc" ".el" ""))))
113          load-path)
114         (or noninteractive
115             (message "No library %s in search path" library))
116         nil))
117     (byte-compile 'locate-library)))
118
119 (unless (fboundp 'si:byte-optimize-form-code-walker)
120   (byte-optimize-form nil);; Load `byte-opt' or `byte-optimize'.
121   (setq max-specpdl-size 3000)
122   (defalias 'si:byte-optimize-form-code-walker
123     (symbol-function 'byte-optimize-form-code-walker))
124   (defun byte-optimize-form-code-walker (form for-effect)
125     (if (and for-effect (memq (car-safe form) '(and or)))
126         ;; Fix bug in and/or forms.
127         (let ((fn (car form))
128               (backwards (reverse (cdr form))))
129           (while (and backwards
130                       (null (setcar backwards
131                                     (byte-optimize-form (car backwards) t))))
132             (setq backwards (cdr backwards)))
133           (if (and (cdr form) (null backwards))
134               (byte-compile-log
135                "  all subforms of %s called for effect; deleted" form))
136           (if backwards
137               (let ((head backwards))
138                 (while (setq backwards (cdr backwards))
139                   (setcar backwards (byte-optimize-form (car backwards)
140                                                         nil)))
141                 (cons fn (nreverse head)))))
142       (si:byte-optimize-form-code-walker form for-effect)))
143   (byte-compile 'byte-optimize-form-code-walker))
144
145 (condition-case nil
146     (char-after)
147   (wrong-number-of-arguments
148    ;; Optimize byte code for `char-after'.
149    (put 'char-after 'byte-optimizer 'byte-optimize-char-after)
150    (defun byte-optimize-char-after (form)
151      (if (null (cdr form))
152          '(char-after (point))
153        form))))
154
155 (condition-case nil
156     (char-before)
157   (wrong-number-of-arguments
158    ;; Optimize byte code for `char-before'.
159    (put 'char-before 'byte-optimizer 'byte-optimize-char-before)
160    (defun byte-optimize-char-before (form)
161      (if (null (cdr form))
162          '(char-before (point))
163        form))))
164
165 (load (expand-file-name "dgnuspath.el" srcdir) nil nil t)
166
167 (condition-case err
168     (load "~/.lpath.el" t nil t)
169   (error (message "Error in \"~/.lpath.el\" file: %s" err)))
170
171 ;; Don't load path-util until `char-after' and `char-before' have been
172 ;; optimized because it requires `poe' and then modify the functions.
173
174 ;; If the APEL modules are installed under the non-standard directory,
175 ;; for example "/var/home/john/lisp/apel-VERSION/", you should add that
176 ;; name using the configure option "--with-addpath=".
177 ;; And also the directory where the EMU modules are installed, for
178 ;; example "/usr/local/share/mule/19.34/site-lisp/", it should be
179 ;; included in the standard `load-path' or added by the configure
180 ;; option "--with-addpath=".
181 (let ((path (or (locate-library "path-util")
182                 (locate-library "apel/path-util")));; backward compat.
183       parent lpath)
184   (if path
185       (progn
186         (when (string-match "/$" (setq path (file-name-directory path)))
187           (setq path (substring path 0 (match-beginning 0))))
188         ;; path == "/var/home/john/lisp/apel-VERSION"
189         (when (string-match "/$" (setq parent (file-name-directory path)))
190           (setq parent (substring path 0 (match-beginning 0))))
191         ;; parent == "/var/home/john/lisp"
192         (if (setq lpath (or (member path load-path)
193                             (member (file-name-as-directory path) load-path)))
194             (unless (or (member parent load-path)
195                         (member (file-name-as-directory parent) load-path))
196               (push parent (cdr lpath)))
197           (push path load-path)
198           (unless (or (member parent load-path)
199                       (member (file-name-as-directory parent) load-path))
200             (push parent (cdr load-path))))
201         (require 'path-util))
202     (error "
203 APEL modules are not found in %s.
204 Try to re-configure with --with-addpath=APEL_PATH and run make again.
205 "
206            load-path)))
207
208 (unless (locate-library "mel")
209   (add-path "flim"))
210 (unless (module-installed-p 'mel)
211   ;; FLIM 1.14 may have installed in two "flim" subdirectories.
212   (push (expand-file-name "flim"
213                           (file-name-directory (get-latest-path "^apel$" t)))
214         load-path)
215   (unless (module-installed-p 'mel)
216     (error "
217 FLIM modules does not found in %s.
218 Try to re-configure with --with-addpath=FLIM_PATH and run make again.
219 "
220            load-path)))
221 (add-path "semi")
222
223 (push srcdir load-path)
224 (load (expand-file-name "lpath.el" srcdir) nil t t)
225
226 (load (expand-file-name "gnus-clfns.el" srcdir) nil t t)
227
228 (when (boundp 'MULE)
229   ;; Load special macros for compiling canlock.el.
230   (load (expand-file-name "canlock-om.el" srcdir) nil t t))
231
232 (require 'custom)
233
234 ;; Bind functions defined by `defun-maybe'.
235 (put 'defun-maybe 'byte-hunk-handler 'byte-compile-file-form-defun-maybe)
236 (defun byte-compile-file-form-defun-maybe (form)
237   (if (and (not (fboundp (nth 1 form)))
238            (memq 'unresolved byte-compile-warnings))
239       (setq byte-compile-function-environment
240             (cons (cons (nth 1 form)
241                         (cons 'lambda (cdr (cdr form))))
242                   byte-compile-function-environment)))
243   form)
244
245 (condition-case nil
246     :symbol-for-testing-whether-colon-keyword-is-available-or-not
247   (void-variable
248    (defun dgnushack-bind-colon-keywords ()
249      "Bind all the colon keywords for old Emacsen."
250      (let ((cache (expand-file-name "dgnuskwds.el" srcdir))
251            (makefile (expand-file-name "Makefile" srcdir))
252            (buffer (get-buffer-create " *colon keywords*"))
253            keywords ignores files file dirs dir form elem make-backup-files)
254        (save-excursion
255          (set-buffer buffer)
256          (let (buffer-file-format
257                format-alist
258                insert-file-contents-post-hook
259                insert-file-contents-pre-hook
260                jam-zcat-filename-list
261                jka-compr-compression-info-list)
262            (if (and (file-exists-p cache)
263                     (file-exists-p makefile)
264                     (file-newer-than-file-p cache makefile))
265                (progn
266                  (insert-file-contents cache nil nil nil t)
267                  (setq keywords (read buffer)))
268              (setq
269               ignores
270               '(:symbol-for-testing-whether-colon-keyword-is-available-or-not
271                 ;; The following keywords will be bound by CUSTOM.
272                 :get :group :initialize :link :load :options :prefix
273                 :require :set :tag :type)
274               files (list (locate-library "semi-def")
275                           (locate-library "mailcap")
276                           (locate-library "mime-def")
277                           (locate-library "path-util")
278                           (locate-library "poem"))
279               dirs (list (file-name-as-directory (expand-file-name srcdir))))
280              (while files
281                (when (setq file (pop files))
282                  (setq dir (file-name-directory file))
283                  (unless (member dir dirs)
284                    (push dir dirs))))
285              (message "Searching for all the colon keywords in:")
286              (while dirs
287                (setq dir (pop dirs))
288                (message " %s..." dir)
289                (setq files (directory-files dir t
290                                             "\\.el\\(\\.gz\\|\\.bz2\\)?$"))
291                (while files
292                  (setq file (pop files))
293                  (if (string-match "\\(\\.gz$\\)\\|\\.bz2$" file)
294                      (let ((temp (expand-file-name "dgnustemp.el" srcdir)))
295                        (when
296                            (let* ((binary (if (boundp 'MULE)
297                                               '*noconv*
298                                             'binary))
299                                   (coding-system-for-read binary)
300                                   (coding-system-for-write binary)
301                                   (input-coding-system binary)
302                                   (output-coding-system binary)
303                                   (default-process-coding-system
304                                     (cons binary binary))
305                                   call-process-hook)
306                              (insert-file-contents file nil nil nil t)
307                              (when
308                                  (condition-case code
309                                      (progn
310                                        (if (match-beginning 1)
311                                            (call-process-region
312                                             (point-min) (point-max)
313                                             "gzip" t buffer nil "-cd")
314                                          (call-process-region
315                                           (point-min) (point-max)
316                                           "bzip2" t buffer nil "-d"))
317                                        t)
318                                    (error
319                                     (erase-buffer)
320                                     (message "In file %s: %s" file code)
321                                     nil))
322                                (write-region (point-min) (point-max) temp
323                                              nil 'silent)
324                                t))
325                          (unwind-protect
326                              (insert-file-contents temp nil nil nil t)
327                            (delete-file temp))))
328                    (insert-file-contents file nil nil nil t))
329                  (while (setq form (condition-case nil
330                                        (read buffer)
331                                      (error nil)))
332                    (while form
333                      (setq elem (pop form))
334                      (unless (memq (car-safe elem)
335                                    '(\` backquote
336                                      defcustom defface defgroup
337                                      define-widget quote))
338                        (while (consp elem)
339                          (push (car elem) form)
340                          (setq elem (cdr elem)))
341                        (when (and elem
342                                   (symbolp elem)
343                                   (not (eq ': elem))
344                                   (eq ?: (aref (symbol-name elem) 0))
345                                   (not (memq elem ignores))
346                                   (not (memq elem keywords)))
347                          (push elem keywords)))))))
348              (setq keywords (sort keywords
349                                   (lambda (a b)
350                                     (string-lessp (symbol-name a)
351                                                   (symbol-name b)))))
352              (erase-buffer)
353              (insert (format "%s" keywords))
354              (write-region (point-min) (point) cache nil 'silent)
355              (message
356               "The following colon keywords will be bound at run-time:\n %s"
357               keywords))))
358        (kill-buffer buffer)
359        (defconst dgnushack-colon-keywords keywords)
360        (while keywords
361          (set (car keywords) (car keywords))
362          (setq keywords (cdr keywords)))))
363    (byte-compile 'dgnushack-bind-colon-keywords)
364    (dgnushack-bind-colon-keywords)))
365
366 (if (boundp 'MULE)
367     (progn
368       (setq :version ':version
369             :set-after ':set-after)
370       (require 'custom)
371       (defadvice custom-handle-keyword
372         (around dont-signal-an-error-even-if-unsupported-keyword-is-given
373                 activate)
374         "Don't signal an error even if unsupported keyword is given."
375         (if (not (memq (ad-get-arg 1) '(:version :set-after)))
376             ad-do-it))))
377
378 (when (boundp 'MULE)
379   (put 'custom-declare-face 'byte-optimizer
380        'byte-optimize-ignore-unsupported-custom-keywords)
381   (put 'custom-declare-group 'byte-optimizer
382        'byte-optimize-ignore-unsupported-custom-keywords)
383   (defun byte-optimize-ignore-unsupported-custom-keywords (form)
384     (if (or (memq ':version (nthcdr 4 form))
385             (memq ':set-after (nthcdr 4 form)))
386         (let ((newform (list (car form) (nth 1 form)
387                              (nth 2 form) (nth 3 form)))
388               (args (nthcdr 4 form)))
389           (while args
390             (or (memq (car args) '(:version :set-after))
391                 (setq newform (nconc newform (list (car args)
392                                                    (car (cdr args))))))
393             (setq args (cdr (cdr args))))
394           newform)
395       form))
396
397   (put 'custom-declare-variable 'byte-hunk-handler
398        'byte-compile-file-form-custom-declare-variable)
399   (defun byte-compile-file-form-custom-declare-variable (form)
400     ;; Bind defcustom'ed variables.
401     (if (memq 'free-vars byte-compile-warnings)
402         (setq byte-compile-bound-variables
403               (cons (nth 1 (nth 1 form)) byte-compile-bound-variables)))
404     (if (memq ':version (nthcdr 4 form))
405         ;; Make the variable uncustomizable.
406         `(defvar ,(nth 1 (nth 1 form)) ,(nth 1 (nth 2 form))
407            ,(substring (nth 3 form) (if (string-match "^[\t *]+" (nth 3 form))
408                                         (match-end 0)
409                                       0)))
410       ;; Ignore unsupported keyword(s).
411       (if (memq ':set-after (nthcdr 4 form))
412           (let ((newform (list (car form) (nth 1 form)
413                                (nth 2 form) (nth 3 form)))
414                 (args (nthcdr 4 form)))
415             (while args
416               (or (eq (car args) ':set-after)
417                   (setq newform (nconc newform (list (car args)
418                                                      (car (cdr args))))))
419               (setq args (cdr (cdr args))))
420             newform)
421         form))))
422
423 ;; Unknown variables and functions.
424 (unless (boundp 'buffer-file-coding-system)
425   (defvar buffer-file-coding-system (symbol-value 'file-coding-system)))
426 (unless (featurep 'xemacs)
427   (defalias 'Custom-make-dependencies 'ignore)
428   (defalias 'update-autoloads-from-directory 'ignore))
429
430 (defalias 'device-sound-enabled-p 'ignore)
431 (defalias 'play-sound-file 'ignore)
432 (defalias 'nndb-request-article 'ignore)
433 (defalias 'efs-re-read-dir 'ignore)
434 (defalias 'ange-ftp-re-read-dir 'ignore)
435 (defalias 'define-mail-user-agent 'ignore)
436
437 (defconst dgnushack-unexporting-files
438   (append '("dgnushack.el" "dgnuspath.el" "dgnuskwds.el" "lpath.el")
439           (condition-case nil
440               (progn (require 'shimbun) nil)
441             (error '("nnshimbun.el")))
442           (unless (or (condition-case code
443                           (require 'w3-forms)
444                         (error
445                          (message "No w3: %s %s retrying..." code
446                                   (locate-library "w3-forms"))
447                          nil))
448                       ;; Maybe mis-configured Makefile is used (e.g.
449                       ;; configured for FSFmacs but XEmacs is running).
450                       (let ((lp (delete dgnushack-w3-directory
451                                         (copy-sequence load-path))))
452                         (if (let ((load-path lp))
453                               (condition-case nil
454                                   (require 'w3-forms)
455                                 (error nil)))
456                             ;; If success, fix `load-path' for compiling.
457                             (progn
458                               (setq load-path lp)
459                               (message " => fixed; W3DIR=%s"
460                                        (file-name-directory
461                                         (locate-library "w3-forms")))
462                               t)
463                           (message " => ignored")
464                           nil)))
465             '("nnweb.el" "nnlistserv.el" "nnultimate.el"
466               "nnslashdot.el" "nnwarchive.el" "webmail.el"
467               "nnwfm.el" "nnrss.el"))
468           (condition-case code
469               (progn (require 'mh-e) nil)
470             (error
471              (message "No mh-e: %s %s (ignored)" code (locate-library "mh-e"))
472              '("gnus-mh.el")))
473           (condition-case code
474               (progn (require 'xml) nil)
475             (error
476              (message "No xml: %s %s (ignored)" code (locate-library "xml"))
477              '("nnrss.el")))
478           (condition-case code
479               (progn (require 'bbdb) nil)
480             (error
481              (message "No bbdb: %s %s (ignored)" code (locate-library "bbdb"))
482              '("gnus-bbdb.el")))
483           (unless (featurep 'xemacs)
484             '("gnus-xmas.el" "gnus-picon.el" "messagexmas.el"
485               "nnheaderxm.el" "smiley.el"))
486           (when (or (featurep 'xemacs) (<= emacs-major-version 20))
487             '("smiley-ems.el"))
488           (when (and (fboundp 'base64-decode-string)
489                      (subrp (symbol-function 'base64-decode-string)))
490             '("base64.el"))
491           (when (and (fboundp 'md5) (subrp (symbol-function 'md5)))
492             '("md5.el"))
493           (unless (boundp 'MULE)
494             '("canlock-om.el")))
495   "Files which will not be installed.")
496
497 (defconst dgnushack-exporting-files
498   (let ((files (directory-files srcdir nil "^[^=].*\\.el$" t)))
499     (dolist (file dgnushack-unexporting-files)
500       (setq files (delete file files)))
501     (sort files 'string-lessp))
502   "Files which will be compiled and installed.")
503
504 (defun dgnushack-exporting-files ()
505   "Print name of files which will be installed."
506   (princ (mapconcat 'identity dgnushack-exporting-files " ")))
507
508 (defun dgnushack-compile (&optional warn)
509   ;;(setq byte-compile-dynamic t)
510   (unless warn
511     (setq byte-compile-warnings
512           '(free-vars unresolved callargs redefine)))
513   (unless (locate-library "cus-edit")
514     (error "You do not seem to have Custom installed.
515 Fetch it from <URL:http://www.dina.kvl.dk/~abraham/custom/>.
516 You also then need to add the following to the lisp/dgnushack.el file:
517
518      (push \"~/lisp/custom\" load-path)
519
520 Modify to suit your needs."))
521
522   ;; Show `load-path'.
523   (message "load-path=(\"%s\")"
524            (mapconcat 'identity load-path "\"\n           \""))
525
526   (dolist (file dgnushack-exporting-files)
527     (setq file (expand-file-name file srcdir))
528     (when (and (file-exists-p
529                 (setq elc (concat (file-name-nondirectory file) "c")))
530                (file-newer-than-file-p file elc))
531       (delete-file elc)))
532
533   (let ((files dgnushack-exporting-files)
534         ;;(byte-compile-generate-call-tree t)
535         file elc)
536     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
537     ;; installed.
538     (when (featurep 'xemacs)
539       (setq gnus-xmas-glyph-directory "dummy"))
540     (while (setq file (pop files))
541       (setq file (expand-file-name file srcdir))
542       (when (or (not (file-exists-p
543                       (setq elc (concat (file-name-nondirectory file) "c"))))
544                 (file-newer-than-file-p file elc))
545         (ignore-errors
546           (byte-compile-file file))))))
547
548 (defun dgnushack-recompile ()
549   (require 'gnus)
550   (byte-recompile-directory "." 0))
551
552 (defvar dgnushack-gnus-load-file (expand-file-name "gnus-load.el" srcdir))
553 (defvar dgnushack-cus-load-file (expand-file-name "cus-load.el" srcdir))
554 (defvar dgnushack-auto-load-file (expand-file-name "auto-autoloads.el" srcdir))
555
556 (defun dgnushack-make-cus-load ()
557   (when (condition-case nil
558             (load "cus-dep")
559           (error nil))
560     (let ((cusload-base-file dgnushack-cus-load-file))
561       (if (fboundp 'custom-make-dependencies)
562           (custom-make-dependencies)
563         (Custom-make-dependencies)))))
564
565 (defun dgnushack-make-auto-load ()
566   (require 'autoload)
567   (unless (make-autoload '(define-derived-mode child parent name
568                             "docstring" body)
569                          "file")
570     (defadvice make-autoload (around handle-define-derived-mode activate)
571       "Handle `define-derived-mode'."
572       (if (eq (car-safe (ad-get-arg 0)) 'define-derived-mode)
573           (setq ad-return-value
574                 (list 'autoload
575                       (list 'quote (nth 1 (ad-get-arg 0)))
576                       (ad-get-arg 1)
577                       (nth 4 (ad-get-arg 0))
578                       t nil))
579         ad-do-it))
580     (put 'define-derived-mode 'doc-string-elt 3))
581   (let ((generated-autoload-file dgnushack-gnus-load-file)
582         (make-backup-files nil)
583         (autoload-package-name "gnus"))
584     (if (featurep 'xemacs)
585         (progn
586           (if (file-exists-p generated-autoload-file)
587               (delete-file generated-autoload-file))
588           (if (file-exists-p dgnushack-auto-load-file)
589               (delete-file dgnushack-auto-load-file)))
590       (with-temp-file generated-autoload-file
591         (insert ?\014)))
592     (if (featurep 'xemacs)
593         (let ((si:message (symbol-function 'message)))
594           (defun message (fmt &rest args)
595             (cond ((and (string-equal "Generating autoloads for %s..." fmt)
596                         (file-exists-p (file-name-nondirectory (car args))))
597                    (funcall si:message
598                             fmt (file-name-nondirectory (car args))))
599                   ((string-equal "No autoloads found in %s" fmt))
600                   ((string-equal "Generating autoloads for %s...done" fmt))
601                   (t (apply si:message fmt args))))
602           (unwind-protect
603               (batch-update-autoloads)
604             (fset 'message si:message)))
605       (batch-update-autoloads))))
606
607 (defun dgnushack-make-load ()
608   (message (format "Generating %s..." dgnushack-gnus-load-file))
609   (with-temp-file dgnushack-gnus-load-file
610     (if (file-exists-p dgnushack-cus-load-file)
611         (progn
612           (insert-file-contents dgnushack-cus-load-file)
613           (delete-file dgnushack-cus-load-file)
614           (goto-char (point-min))
615           (search-forward ";;; Code:")
616           (forward-line)
617           (delete-region (point-min) (point))
618           (unless (re-search-forward "\
619 ^[\t ]*(autoload[\t\n ]+\\('\\|(quote[\t\n ]+\\)custom-add-loads[\t\n ]"
620                                      nil t)
621             (insert "\n(autoload 'custom-add-loads \"cus-load\")\n"))
622           (goto-char (point-min))
623           (insert "\
624 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
625 ;;
626 ;;; Code:
627 ")
628           (goto-char (point-max))
629           (if (search-backward "custom-versions-load-alist" nil t)
630               (forward-line -1)
631             (forward-line -1)
632             (while (eq (char-after) ?\;)
633               (forward-line -1))
634             (forward-line))
635           (delete-region (point) (point-max))
636           (insert "\n"))
637       (insert "\
638 ;;; gnus-load.el --- automatically extracted autoload
639 ;;
640 ;;; Code:
641 "))
642     ;; smiley-* are duplicated. Remove them all.
643     (let ((point (point)))
644       (insert-file-contents dgnushack-gnus-load-file)
645       (goto-char point)
646       (while (search-forward "smiley-" nil t)
647         (beginning-of-line)
648         (if (looking-at "(autoload ")
649             (delete-region (point) (progn (forward-sexp) (point)))
650           (forward-line))))
651     ;;
652     (goto-char (point-max))
653     (when (search-backward "\n(provide " nil t)
654       (forward-line -1)
655       (delete-region (point) (point-max)))
656     (insert "\
657
658 \(provide 'gnus-load)
659
660 ;;; Local Variables:
661 ;;; version-control: never
662 ;;; no-byte-compile: t
663 ;;; no-update-autoloads: t
664 ;;; End:
665 ;;; gnus-load.el ends here
666 ")
667     ;; Workaround the bug in some version of XEmacs.
668     (when (featurep 'xemacs)
669       (condition-case nil
670           (require 'cus-load)
671         (error nil))
672       (goto-char (point-min))
673       (when (and (fboundp 'custom-add-loads)
674                  (not (search-forward "\n(autoload 'custom-add-loads " nil t)))
675         (search-forward "\n;;; Code:" nil t)
676         (forward-line 1)
677         (insert "\n(autoload 'custom-add-loads \"cus-load\")\n"))))
678   (message (format "Compiling %s..." dgnushack-gnus-load-file))
679   (byte-compile-file dgnushack-gnus-load-file))
680
681 \f
682 (defun dgnushack-compose-package ()
683   "Re-split the file gnus-load.el into custom-load.el and
684 auto-autoloads.el.  It is silly, should be improved!"
685   (message "
686 Re-splitting gnus-load.el into custom-load.el and auto-autoloads.el...")
687   (let ((customload (expand-file-name "custom-load.el" srcdir))
688         (autoloads (expand-file-name "auto-autoloads.el" srcdir))
689         start)
690     (with-temp-buffer
691       (insert-file-contents dgnushack-gnus-load-file)
692       (delete-file dgnushack-gnus-load-file)
693       (when (file-exists-p (concat dgnushack-gnus-load-file "c"))
694         (delete-file (concat dgnushack-gnus-load-file "c")))
695       (while (prog1
696                  (looking-at "[\t ;]")
697                (forward-line 1)))
698       (setq start (point))
699       (insert "\
700 ;;; custom-load.el --- automatically extracted custom dependencies\n
701 ;;; Code:\n\n")
702       (goto-char (point-max))
703       (while (progn
704                (forward-line -1)
705                (not (looking-at "[\t ]*(custom-add-loads[\t\n ]"))))
706       (forward-list 1)
707       (forward-line 1)
708       (insert "\n;;; custom-load.el ends here\n")
709       (write-region start (point) customload)
710       (while (looking-at "[\t ]*$")
711         (forward-line 1))
712       (setq start (point))
713       (if (re-search-forward "^[\t\n ]*(if[\t\n ]+(featurep[\t\n ]" nil t)
714           (let ((from (goto-char (match-beginning 0))))
715             (delete-region from (progn
716                                   (forward-list 1)
717                                   (forward-line 1)
718                                   (point))))
719         (while (looking-at "[\t ;]")
720           (forward-line 1)))
721       (insert "(if (featurep 'gnus-autoloads) (error \"Already loaded\"))\n")
722       (goto-char (point-max))
723       (while (progn
724                (forward-line -1)
725                (not (looking-at "[\t ]*(provide[\t\n ]"))))
726       (insert "(provide 'gnus-autoloads)\n")
727       (write-region start (point) autoloads))
728     (byte-compile-file customload)
729     (byte-compile-file autoloads))
730   (message "\
731 Re-splitting gnus-load.el into custom-load.el and auto-autoloads.el...done
732 \n"))
733
734 \f
735 (defconst dgnushack-info-file-regexp-en
736   (let ((names '("gnus" "message" "emacs-mime"))
737         regexp name)
738     (while (setq name (pop names))
739       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
740                            (when names "\\|"))))
741     regexp)
742   "Regexp matching English info files.")
743
744 (defconst dgnushack-info-file-regexp-ja
745   (let ((names '("gnus-ja" "message-ja"))
746         regexp name)
747     (while (setq name (pop names))
748       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
749                            (when names "\\|"))))
750     regexp)
751   "Regexp matching Japanese info files.")
752
753 (defun dgnushack-remove-extra-files-in-package ()
754   "Remove extra files in the lisp directory of the XEmacs package."
755   (let ((lisp-dir (expand-file-name (concat "lisp/"
756                                             ;; GNUS_PRODUCT_NAME
757                                             (cadr command-line-args-left)
758                                             "/")
759                                     ;; PACKAGEDIR
760                                     (car command-line-args-left))))
761     (when (file-directory-p lisp-dir)
762       (let (files)
763         (dolist (file dgnushack-exporting-files)
764           (setq files (nconc files (list file (concat file "c")))))
765         (dolist (file (directory-files lisp-dir nil nil t t))
766           (unless (member file files)
767             (setq file (expand-file-name file lisp-dir))
768             (message "Removing %s..." file)
769             (condition-case nil
770                 (delete-file file)
771               (error nil))))))))
772
773 (defun dgnushack-install-package-manifest ()
774   "Install MANIFEST file as an XEmacs package."
775   (let* ((package-dir (car command-line-args-left))
776          (product-name (cadr command-line-args-left))
777          (name (expand-file-name (concat "pkginfo/MANIFEST." product-name)
778                                  package-dir))
779          make-backup-files)
780     (message "Generating %s..." name)
781     (with-temp-file name
782       (insert "pkginfo/MANIFEST." product-name "\n")
783       (let ((lisp-dir (concat "lisp/" product-name "/"))
784             (files (sort (directory-files "." nil "\\.elc?$" t) 'string-lessp))
785             file)
786         (while (setq file (pop files))
787           (unless (member file dgnushack-unexporting-files)
788             (insert lisp-dir file "\n")))
789         (setq files
790               (sort (directory-files "../texi/" nil
791                                      (concat dgnushack-info-file-regexp-en
792                                              "\\|"
793                                              dgnushack-info-file-regexp-ja)
794                                      t)
795                     'string-lessp))
796         (while (setq file (pop files))
797           (insert "info/" file "\n"))))))
798
799 \f
800 (define-compiler-macro describe-key-briefly (&whole form key &optional insert)
801   (if (condition-case nil
802           (progn
803             (describe-key-briefly '((())) nil)
804             t)
805         (wrong-number-of-arguments nil);; Old Emacsen.
806         (error t))
807       form
808     (if insert
809         `(if ,insert
810              (insert (funcall 'describe-key-briefly ,key))
811            (funcall 'describe-key-briefly ,key))
812       `(funcall 'describe-key-briefly ,key))))
813
814 ;;; dgnushack.el ends here