* message.el (message-find-invisible-regions): Look for the text-property
[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 (require 'custom)
229
230 ;; Bind functions defined by `defun-maybe'.
231 (put 'defun-maybe 'byte-hunk-handler 'byte-compile-file-form-defun-maybe)
232 (defun byte-compile-file-form-defun-maybe (form)
233   (if (and (not (fboundp (nth 1 form)))
234            (memq 'unresolved byte-compile-warnings))
235       (setq byte-compile-function-environment
236             (cons (cons (nth 1 form)
237                         (cons 'lambda (cdr (cdr form))))
238                   byte-compile-function-environment)))
239   form)
240
241 (condition-case nil
242     :symbol-for-testing-whether-colon-keyword-is-available-or-not
243   (void-variable
244    (defun dgnushack-bind-colon-keywords ()
245      "Bind all the colon keywords for old Emacsen."
246      (let ((cache (expand-file-name "dgnuskwds.el" srcdir))
247            (makefile (expand-file-name "Makefile" srcdir))
248            (buffer (get-buffer-create " *colon keywords*"))
249            keywords ignores files file dirs dir form elem make-backup-files)
250        (save-excursion
251          (set-buffer buffer)
252          (let (buffer-file-format
253                format-alist
254                insert-file-contents-post-hook
255                insert-file-contents-pre-hook
256                jam-zcat-filename-list
257                jka-compr-compression-info-list)
258            (if (and (file-exists-p cache)
259                     (file-exists-p makefile)
260                     (file-newer-than-file-p cache makefile))
261                (progn
262                  (insert-file-contents cache nil nil nil t)
263                  (setq keywords (read buffer)))
264              (setq
265               ignores
266               '(:symbol-for-testing-whether-colon-keyword-is-available-or-not
267                 ;; The following keywords will be bound by CUSTOM.
268                 :get :group :initialize :link :load :options :prefix
269                 :require :set :tag :type)
270               files (list (locate-library "semi-def")
271                           (locate-library "mailcap")
272                           (locate-library "mime-def")
273                           (locate-library "path-util")
274                           (locate-library "poem"))
275               dirs (list (file-name-as-directory (expand-file-name srcdir))))
276              (while files
277                (when (setq file (pop files))
278                  (setq dir (file-name-directory file))
279                  (unless (member dir dirs)
280                    (push dir dirs))))
281              (message "Searching for all the colon keywords in:")
282              (while dirs
283                (setq dir (pop dirs))
284                (message " %s..." dir)
285                (setq files (directory-files dir t
286                                             "\\.el\\(\\.gz\\|\\.bz2\\)?$"))
287                (while files
288                  (setq file (pop files))
289                  (if (string-match "\\(\\.gz$\\)\\|\\.bz2$" file)
290                      (let ((temp (expand-file-name "dgnustemp.el" srcdir)))
291                        (when
292                            (let* ((binary (if (boundp 'MULE)
293                                               '*noconv*
294                                             'binary))
295                                   (coding-system-for-read binary)
296                                   (coding-system-for-write binary)
297                                   (input-coding-system binary)
298                                   (output-coding-system binary)
299                                   (default-process-coding-system
300                                     (cons binary binary))
301                                   call-process-hook)
302                              (insert-file-contents file nil nil nil t)
303                              (when
304                                  (condition-case code
305                                      (progn
306                                        (if (match-beginning 1)
307                                            (call-process-region
308                                             (point-min) (point-max)
309                                             "gzip" t buffer nil "-cd")
310                                          (call-process-region
311                                           (point-min) (point-max)
312                                           "bzip2" t buffer nil "-d"))
313                                        t)
314                                    (error
315                                     (erase-buffer)
316                                     (message "In file %s: %s" file code)
317                                     nil))
318                                (write-region (point-min) (point-max) temp
319                                              nil 'silent)
320                                t))
321                          (unwind-protect
322                              (insert-file-contents temp nil nil nil t)
323                            (delete-file temp))))
324                    (insert-file-contents file nil nil nil t))
325                  (while (setq form (condition-case nil
326                                        (read buffer)
327                                      (error nil)))
328                    (while form
329                      (setq elem (pop form))
330                      (unless (memq (car-safe elem)
331                                    '(\` backquote
332                                      defcustom defface defgroup
333                                      define-widget quote))
334                        (while (consp elem)
335                          (push (car elem) form)
336                          (setq elem (cdr elem)))
337                        (when (and elem
338                                   (symbolp elem)
339                                   (not (eq ': elem))
340                                   (eq ?: (aref (symbol-name elem) 0))
341                                   (not (memq elem ignores))
342                                   (not (memq elem keywords)))
343                          (push elem keywords)))))))
344              (setq keywords (sort keywords
345                                   (lambda (a b)
346                                     (string-lessp (symbol-name a)
347                                                   (symbol-name b)))))
348              (erase-buffer)
349              (insert (format "%s" keywords))
350              (write-region (point-min) (point) cache nil 'silent)
351              (message
352               "The following colon keywords will be bound at run-time:\n %s"
353               keywords))))
354        (kill-buffer buffer)
355        (defconst dgnushack-colon-keywords keywords)
356        (while keywords
357          (set (car keywords) (car keywords))
358          (setq keywords (cdr keywords)))))
359    (byte-compile 'dgnushack-bind-colon-keywords)
360    (dgnushack-bind-colon-keywords)))
361
362 (if (boundp 'MULE)
363     (progn
364       (setq :version ':version
365             :set-after ':set-after)
366       (require 'custom)
367       (defadvice custom-handle-keyword
368         (around dont-signal-an-error-even-if-unsupported-keyword-is-given
369                 activate)
370         "Don't signal an error even if unsupported keyword is given."
371         (if (not (memq (ad-get-arg 1) '(:version :set-after)))
372             ad-do-it))))
373
374 (when (boundp 'MULE)
375   (put 'custom-declare-face 'byte-optimizer
376        'byte-optimize-ignore-unsupported-custom-keywords)
377   (put 'custom-declare-group 'byte-optimizer
378        'byte-optimize-ignore-unsupported-custom-keywords)
379   (defun byte-optimize-ignore-unsupported-custom-keywords (form)
380     (if (or (memq ':version (nthcdr 4 form))
381             (memq ':set-after (nthcdr 4 form)))
382         (let ((newform (list (car form) (nth 1 form)
383                              (nth 2 form) (nth 3 form)))
384               (args (nthcdr 4 form)))
385           (while args
386             (or (memq (car args) '(:version :set-after))
387                 (setq newform (nconc newform (list (car args)
388                                                    (car (cdr args))))))
389             (setq args (cdr (cdr args))))
390           newform)
391       form))
392
393   (put 'custom-declare-variable 'byte-hunk-handler
394        'byte-compile-file-form-custom-declare-variable)
395   (defun byte-compile-file-form-custom-declare-variable (form)
396     ;; Bind defcustom'ed variables.
397     (if (memq 'free-vars byte-compile-warnings)
398         (setq byte-compile-bound-variables
399               (cons (nth 1 (nth 1 form)) byte-compile-bound-variables)))
400     (if (memq ':version (nthcdr 4 form))
401         ;; Make the variable uncustomizable.
402         `(defvar ,(nth 1 (nth 1 form)) ,(nth 1 (nth 2 form))
403            ,(substring (nth 3 form) (if (string-match "^[\t *]+" (nth 3 form))
404                                         (match-end 0)
405                                       0)))
406       ;; Ignore unsupported keyword(s).
407       (if (memq ':set-after (nthcdr 4 form))
408           (let ((newform (list (car form) (nth 1 form)
409                                (nth 2 form) (nth 3 form)))
410                 (args (nthcdr 4 form)))
411             (while args
412               (or (eq (car args) ':set-after)
413                   (setq newform (nconc newform (list (car args)
414                                                      (car (cdr args))))))
415               (setq args (cdr (cdr args))))
416             newform)
417         form))))
418
419 ;; Unknown variables and functions.
420 (unless (boundp 'buffer-file-coding-system)
421   (defvar buffer-file-coding-system (symbol-value 'file-coding-system)))
422 (unless (featurep 'xemacs)
423   (defalias 'Custom-make-dependencies 'ignore)
424   (defalias 'update-autoloads-from-directory 'ignore))
425
426 (defalias 'device-sound-enabled-p 'ignore)
427 (defalias 'play-sound-file 'ignore)
428 (defalias 'nndb-request-article 'ignore)
429 (defalias 'efs-re-read-dir 'ignore)
430 (defalias 'ange-ftp-re-read-dir 'ignore)
431 (defalias 'define-mail-user-agent 'ignore)
432
433 (defconst dgnushack-unexporting-files
434   (append '("dgnushack.el" "dgnuspath.el" "dgnuskwds.el" "lpath.el")
435           (condition-case nil
436               (progn (require 'shimbun) nil)
437             (error '("nnshimbun.el")))
438           (unless (or (condition-case code
439                           (require 'w3-forms)
440                         (error
441                          (message "No w3: %s %s retrying..." code
442                                   (locate-library "w3-forms"))
443                          nil))
444                       ;; Maybe mis-configured Makefile is used (e.g.
445                       ;; configured for FSFmacs but XEmacs is running).
446                       (let ((lp (delete dgnushack-w3-directory
447                                         (copy-sequence load-path))))
448                         (if (let ((load-path lp))
449                               (condition-case nil
450                                   (require 'w3-forms)
451                                 (error nil)))
452                             ;; If success, fix `load-path' for compiling.
453                             (progn
454                               (setq load-path lp)
455                               (message " => fixed; W3DIR=%s"
456                                        (file-name-directory
457                                         (locate-library "w3-forms")))
458                               t)
459                           (message " => ignored")
460                           nil)))
461             '("nnweb.el" "nnlistserv.el" "nnultimate.el"
462               "nnslashdot.el" "nnwarchive.el" "webmail.el"
463               "nnwfm.el" "nnrss.el"))
464           (condition-case nil
465               (progn (require 'bbdb) nil)
466             (error '("gnus-bbdb.el")))
467           (unless (featurep 'xemacs)
468             '("gnus-xmas.el" "gnus-picon.el" "messagexmas.el"
469               "nnheaderxm.el" "smiley.el"))
470           (when (or (featurep 'xemacs) (<= emacs-major-version 20))
471             '("smiley-ems.el"))
472           (when (and (fboundp 'base64-decode-string)
473                      (subrp (symbol-function 'base64-decode-string)))
474             '("base64.el"))
475           (when (and (fboundp 'md5) (subrp (symbol-function 'md5)))
476             '("md5.el")))
477   "Files which will not be installed.")
478
479 (defconst dgnushack-exporting-files
480   (let ((files (directory-files srcdir nil "^[^=].*\\.el$" t)))
481     (dolist (file dgnushack-unexporting-files)
482       (setq files (delete file files)))
483     (sort files 'string-lessp))
484   "Files which will be compiled and installed.")
485
486 (defun dgnushack-exporting-files ()
487   "Print name of files which will be installed."
488   (princ (mapconcat 'identity dgnushack-exporting-files " ")))
489
490 (defun dgnushack-compile (&optional warn)
491   ;;(setq byte-compile-dynamic t)
492   (unless warn
493     (setq byte-compile-warnings
494           '(free-vars unresolved callargs redefine)))
495   (unless (locate-library "cus-edit")
496     (error "You do not seem to have Custom installed.
497 Fetch it from <URL:http://www.dina.kvl.dk/~abraham/custom/>.
498 You also then need to add the following to the lisp/dgnushack.el file:
499
500      (push \"~/lisp/custom\" load-path)
501
502 Modify to suit your needs."))
503
504   ;; Show `load-path'.
505   (message "load-path=(\"%s\")"
506            (mapconcat 'identity load-path "\"\n           \""))
507
508   (dolist (file dgnushack-exporting-files)
509     (setq file (expand-file-name file srcdir))
510     (when (and (file-exists-p
511                 (setq elc (concat (file-name-nondirectory file) "c")))
512                (file-newer-than-file-p file elc))
513       (delete-file elc)))
514
515   (let ((files dgnushack-exporting-files)
516         ;;(byte-compile-generate-call-tree t)
517         file elc)
518     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
519     ;; installed.
520     (when (featurep 'xemacs)
521       (setq gnus-xmas-glyph-directory "dummy"))
522     (while (setq file (pop files))
523       (setq file (expand-file-name file srcdir))
524       (when (or (not (file-exists-p
525                       (setq elc (concat (file-name-nondirectory file) "c"))))
526                 (file-newer-than-file-p file elc))
527         (ignore-errors
528           (byte-compile-file file))))))
529
530 (defun dgnushack-recompile ()
531   (require 'gnus)
532   (byte-recompile-directory "." 0))
533
534 (defvar dgnushack-gnus-load-file (expand-file-name "gnus-load.el" srcdir))
535 (defvar dgnushack-cus-load-file (expand-file-name "cus-load.el" srcdir))
536 (defvar dgnushack-auto-load-file (expand-file-name "auto-autoloads.el" srcdir))
537
538 (defun dgnushack-make-cus-load ()
539   (when (condition-case nil
540             (load "cus-dep")
541           (error nil))
542     (let ((cusload-base-file dgnushack-cus-load-file))
543       (if (fboundp 'custom-make-dependencies)
544           (custom-make-dependencies)
545         (Custom-make-dependencies)))))
546
547 (defun dgnushack-make-auto-load ()
548   (require 'autoload)
549   (let ((generated-autoload-file dgnushack-gnus-load-file)
550         (make-backup-files nil)
551         (autoload-package-name "gnus"))
552     (if (featurep 'xemacs)
553         (progn
554           (if (file-exists-p generated-autoload-file)
555               (delete-file generated-autoload-file))
556           (if (file-exists-p dgnushack-auto-load-file)
557               (delete-file dgnushack-auto-load-file)))
558       (with-temp-file generated-autoload-file
559         (insert ?\014)))
560     (if (featurep 'xemacs)
561         (let ((si:message (symbol-function 'message)))
562           (defun message (fmt &rest args)
563             (cond ((and (string-equal "Generating autoloads for %s..." fmt)
564                         (file-exists-p (file-name-nondirectory (car args))))
565                    (funcall si:message
566                             fmt (file-name-nondirectory (car args))))
567                   ((string-equal "No autoloads found in %s" fmt))
568                   ((string-equal "Generating autoloads for %s...done" fmt))
569                   (t (apply si:message fmt args))))
570           (unwind-protect
571               (batch-update-autoloads)
572             (fset 'message si:message)))
573       (batch-update-autoloads))))
574
575 (defun dgnushack-make-load ()
576   (message (format "Generating %s..." dgnushack-gnus-load-file))
577   (with-temp-file dgnushack-gnus-load-file
578     (if (file-exists-p dgnushack-cus-load-file)
579         (progn
580           (insert-file-contents dgnushack-cus-load-file)
581           (delete-file dgnushack-cus-load-file)
582           (goto-char (point-min))
583           (search-forward ";;; Code:")
584           (forward-line)
585           (delete-region (point-min) (point))
586           (unless (re-search-forward "\
587 ^[\t ]*(autoload[\t\n ]+\\('\\|(quote[\t\n ]+\\)custom-add-loads[\t\n ]"
588                                      nil t)
589             (insert "\n(autoload 'custom-add-loads \"cus-load\")\n"))
590           (goto-char (point-min))
591           (insert "\
592 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
593 ;;
594 ;;; Code:
595 ")
596           (goto-char (point-max))
597           (if (search-backward "custom-versions-load-alist" nil t)
598               (forward-line -1)
599             (forward-line -1)
600             (while (eq (char-after) ?\;)
601               (forward-line -1))
602             (forward-line))
603           (delete-region (point) (point-max))
604           (insert "\n"))
605       (insert "\
606 ;;; gnus-load.el --- automatically extracted autoload
607 ;;
608 ;;; Code:
609 "))
610     ;; smiley-* are duplicated. Remove them all.
611     (let ((point (point)))
612       (insert-file-contents dgnushack-gnus-load-file)
613       (goto-char point)
614       (while (search-forward "smiley-" nil t)
615         (beginning-of-line)
616         (if (looking-at "(autoload ")
617             (delete-region (point) (progn (forward-sexp) (point)))
618           (forward-line))))
619     ;;
620     (goto-char (point-max))
621     (when (search-backward "\n(provide " nil t)
622       (forward-line -1)
623       (delete-region (point) (point-max)))
624     (insert "\
625
626 \(provide 'gnus-load)
627
628 ;;; Local Variables:
629 ;;; version-control: never
630 ;;; no-byte-compile: t
631 ;;; no-update-autoloads: t
632 ;;; End:
633 ;;; gnus-load.el ends here\n"))
634   (message (format "Compiling %s..." dgnushack-gnus-load-file))
635   (byte-compile-file dgnushack-gnus-load-file))
636
637 \f
638 (defun dgnushack-compose-package ()
639   "Re-split the file gnus-load.el into custom-load.el and
640 auto-autoloads.el.  It is silly, should be improved!"
641   (message "
642 Re-splitting gnus-load.el into custom-load.el and auto-autoloads.el...")
643   (let ((customload (expand-file-name "custom-load.el" srcdir))
644         (autoloads (expand-file-name "auto-autoloads.el" srcdir))
645         start)
646     (with-temp-buffer
647       (insert-file-contents dgnushack-gnus-load-file)
648       (delete-file dgnushack-gnus-load-file)
649       (when (file-exists-p (concat dgnushack-gnus-load-file "c"))
650         (delete-file (concat dgnushack-gnus-load-file "c")))
651       (while (prog1
652                  (looking-at "[\t ;]")
653                (forward-line 1)))
654       (setq start (point))
655       (insert "\
656 ;;; custom-load.el --- automatically extracted custom dependencies\n
657 ;;; Code:\n\n")
658       (goto-char (point-max))
659       (while (progn
660                (forward-line -1)
661                (not (looking-at "[\t ]*(custom-add-loads[\t\n ]"))))
662       (forward-list 1)
663       (forward-line 1)
664       (insert "\n;;; custom-load.el ends here\n")
665       (write-region start (point) customload)
666       (while (looking-at "[\t ]*$")
667         (forward-line 1))
668       (setq start (point))
669       (if (re-search-forward "^[\t\n ]*(if[\t\n ]+(featurep[\t\n ]" nil t)
670           (let ((from (goto-char (match-beginning 0))))
671             (delete-region from (progn
672                                   (forward-list 1)
673                                   (forward-line 1)
674                                   (point))))
675         (while (looking-at "[\t ;]")
676           (forward-line 1)))
677       (insert "(if (featurep 'gnus-autoloads) (error \"Already loaded\"))\n")
678       (goto-char (point-max))
679       (while (progn
680                (forward-line -1)
681                (not (looking-at "[\t ]*(provide[\t\n ]"))))
682       (insert "(provide 'gnus-autoloads)\n")
683       (write-region start (point) autoloads))
684     (byte-compile-file customload)
685     (byte-compile-file autoloads))
686   (message "\
687 Re-splitting gnus-load.el into custom-load.el and auto-autoloads.el...done
688 \n"))
689
690 \f
691 (defconst dgnushack-info-file-regexp-en
692   (let ((names '("gnus" "message" "emacs-mime"))
693         regexp name)
694     (while (setq name (pop names))
695       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
696                            (when names "\\|"))))
697     regexp)
698   "Regexp matching English info files.")
699
700 (defconst dgnushack-info-file-regexp-ja
701   (let ((names '("gnus-ja" "message-ja"))
702         regexp name)
703     (while (setq name (pop names))
704       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
705                            (when names "\\|"))))
706     regexp)
707   "Regexp matching Japanese info files.")
708
709 (defun dgnushack-remove-extra-files-in-package ()
710   "Remove extra files in the lisp directory of the XEmacs package."
711   (let ((lisp-dir (expand-file-name (concat "lisp/"
712                                             ;; GNUS_PRODUCT_NAME
713                                             (cadr command-line-args-left)
714                                             "/")
715                                     ;; PACKAGEDIR
716                                     (car command-line-args-left))))
717     (when (file-directory-p lisp-dir)
718       (let (files)
719         (dolist (file dgnushack-exporting-files)
720           (setq files (nconc files (list file (concat file "c")))))
721         (dolist (file (directory-files lisp-dir nil nil t t))
722           (unless (member file files)
723             (setq file (expand-file-name file lisp-dir))
724             (message "Removing %s..." file)
725             (condition-case nil
726                 (delete-file file)
727               (error nil))))))))
728
729 (defun dgnushack-install-package-manifest ()
730   "Install MANIFEST file as an XEmacs package."
731   (let* ((package-dir (car command-line-args-left))
732          (product-name (cadr command-line-args-left))
733          (name (expand-file-name (concat "pkginfo/MANIFEST." product-name)
734                                  package-dir))
735          make-backup-files)
736     (message "Generating %s..." name)
737     (with-temp-file name
738       (insert "pkginfo/MANIFEST." product-name "\n")
739       (let ((lisp-dir (concat "lisp/" product-name "/"))
740             (files (sort (directory-files "." nil "\\.elc?$" t) 'string-lessp))
741             file)
742         (while (setq file (pop files))
743           (unless (member file dgnushack-unexporting-files)
744             (insert lisp-dir file "\n")))
745         (setq files
746               (sort (directory-files "../texi/" nil
747                                      (concat dgnushack-info-file-regexp-en
748                                              "\\|"
749                                              dgnushack-info-file-regexp-ja)
750                                      t)
751                     'string-lessp))
752         (while (setq file (pop files))
753           (insert "info/" file "\n"))))))
754
755 \f
756 (define-compiler-macro describe-key-briefly (&whole form key &optional insert)
757   (if (condition-case nil
758           (progn
759             (describe-key-briefly '((())) nil)
760             t)
761         (wrong-number-of-arguments nil);; Old Emacsen.
762         (error t))
763       form
764     (if insert
765         `(if ,insert
766              (insert (funcall 'describe-key-briefly ,key))
767            (funcall 'describe-key-briefly ,key))
768       `(funcall 'describe-key-briefly ,key))))
769
770 ;;; dgnushack.el ends here