Synch with Gnus.
[elisp/gnus.git-] / lisp / dgnushack.el
index f6d583c..5072a5d 100644 (file)
 ;;; Code:
 
 ;; Set coding priority of Shift-JIS to the bottom.
-(defvar *predefined-category*)
-(defvar coding-category-list)
 (if (featurep 'xemacs)
-    (fset 'set-coding-priority 'ignore)
-  (fset 'coding-priority-list 'ignore)
-  (fset 'set-coding-priority-list 'ignore))
+    (defalias 'set-coding-priority 'ignore)
+  (defalias 'coding-priority-list 'ignore)
+  (defalias 'set-coding-priority-list 'ignore))
 (cond ((and (featurep 'xemacs) (featurep 'mule))
        (if (memq 'shift-jis (coding-priority-list))
           (set-coding-priority-list
-           (nconc (delq 'shift-jis (coding-priority-list)) '(shift-jis)))))
+           (append (delq 'shift-jis (coding-priority-list)) '(shift-jis)))))
       ((boundp 'MULE)
        (put '*coding-category-sjis* 'priority (length *predefined-category*)))
       ((featurep 'mule)
        (if (memq 'coding-category-sjis coding-category-list)
           (set-coding-priority
-           (nconc (delq 'coding-category-sjis coding-category-list)
-                  '(coding-category-sjis))))))
+           (append (delq 'coding-category-sjis
+                         (copy-sequence coding-category-list))
+                   '(coding-category-sjis))))))
 
-(fset 'facep 'ignore)
+(defalias 'facep 'ignore)
 
 (require 'cl)
 
 (defvar srcdir (or (getenv "srcdir") "."))
 
-(push (or (getenv "W3DIR") (expand-file-name "../../w3/lisp/" srcdir))
-      load-path)
-(load (expand-file-name "dgnuspath.el" srcdir) nil nil t)
+(defvar dgnushack-w3-dir (let ((w3dir (getenv "W3DIR")))
+                          (unless (zerop (length w3dir))
+                            (file-name-as-directory w3dir))))
+(when dgnushack-w3-dir
+  (push dgnushack-w3-dir load-path))
 
 ;; If we are building w3 in a different directory than the source
 ;; directory, we must read *.el from source directory and write *.elc
@@ -80,8 +81,8 @@
 (unless (fboundp 'si:byte-optimize-form-code-walker)
   (byte-optimize-form nil);; Load `byte-opt' or `byte-optimize'.
   (setq max-specpdl-size 3000)
-  (fset 'si:byte-optimize-form-code-walker
-       (symbol-function 'byte-optimize-form-code-walker))
+  (defalias 'si:byte-optimize-form-code-walker
+    (symbol-function 'byte-optimize-form-code-walker))
   (defun byte-optimize-form-code-walker (form for-effect)
     (if (and for-effect (memq (car-safe form) '(and or)))
        ;; Fix bug in and/or forms.
 
 (load (expand-file-name "gnus-clfns.el" srcdir) nil t t)
 
-(condition-case err
-    (load "~/.lpath.el" t nil t)
-  (error (message "Error in \"~/.lpath.el\" file: %s" err)))
-
 (condition-case nil
     (char-after)
   (wrong-number-of-arguments
    (defun byte-optimize-char-after (form)
      (if (null (cdr form))
         '(char-after (point))
-       form))
-   ))
+       form))))
 
 (condition-case nil
     (char-before)
    (defun byte-optimize-char-before (form)
      (if (null (cdr form))
         '(char-before (point))
-       form))
-   ))
+       form))))
+
+(load (expand-file-name "dgnuspath.el" srcdir) nil nil t)
+
+(condition-case err
+    (load "~/.lpath.el" t nil t)
+  (error (message "Error in \"~/.lpath.el\" file: %s" err)))
+
+;; Don't load path-util until `char-after' and `char-before' have been
+;; optimized because it requires `poe' and then modify the functions.
+(or (featurep 'path-util)
+    (load "apel/path-util"))
+(add-path "apel")
+(add-path "flim")
+(add-path "semi")
 
-;; `char-after' and `char-before' must be well-behaved before lpath.el
-;; is loaded.  Because it requires `poe' via `path-util'.
+(push srcdir load-path)
 (load (expand-file-name "lpath.el" srcdir) nil t t)
 
 (unless (fboundp 'byte-compile-file-form-custom-declare-variable)
     :symbol-for-testing-whether-colon-keyword-is-available-or-not
   (void-variable
    ;; Bind keywords.
-   (mapcar (lambda (keyword) (set keyword keyword))
-          '(:button-keymap :data :file :mime-handle))))
+   (dolist (keyword '(:button-keymap :data :file :mime-handle
+                                    :key-type :value-type))
+     (set keyword keyword))))
 
 ;; Unknown variables and functions.
 (unless (boundp 'buffer-file-coding-system)
 (defalias 'ange-ftp-re-read-dir 'ignore)
 (defalias 'define-mail-user-agent 'ignore)
 
-(defconst dgnushack-tool-files
-  '("dgnushack.el" "dgnuspath.el" "ptexinfmt.el"))
-(defconst dgnushack-unexported-files
-  '("dgnuspath.el" "ptexinfmt.el"))
+(defconst dgnushack-unexporting-files
+  (append '("dgnushack.el" "dgnuspath.el" "lpath.el" "ptexinfmt.el")
+         (unless (or (condition-case nil
+                         (require 'w3-forms)
+                       (error nil))
+                     ;; Maybe mis-configured Makefile is used (e.g.
+                     ;; configured for FSFmacs but XEmacs is running).
+                     (let ((lp (delete dgnushack-w3-dir
+                                       (copy-sequence load-path))))
+                       (when (condition-case nil
+                                 (let ((load-path lp))
+                                   (require 'w3-forms))
+                               (error nil))
+                         ;; If success, fix `load-path' for compiling.
+                         (setq load-path lp))))
+           '("nnweb.el" "nnlistserv.el" "nnultimate.el"
+             "nnslashdot.el" "nnwarchive.el" "webmail.el"
+             "nnwfm.el"))
+         (condition-case nil
+             (progn (require 'bbdb) nil)
+           (error '("gnus-bbdb.el")))
+         (unless (featurep 'xemacs)
+           '("gnus-xmas.el" "gnus-picon.el" "messagexmas.el"
+             "nnheaderxm.el" "smiley.el"))
+         (when (or (featurep 'xemacs) (<= emacs-major-version 20))
+           '("smiley-ems.el"))
+         (when (and (fboundp 'base64-decode-string)
+                    (subrp (symbol-function 'base64-decode-string)))
+           '("base64.el"))
+         (when (and (fboundp 'md5) (subrp (symbol-function 'md5)))
+           '("md5.el")))
+  "Files which will not be installed.")
+
+(defconst dgnushack-exporting-files
+  (let ((files (directory-files srcdir nil "^[^=].*\\.el$" t)))
+    (dolist (file dgnushack-unexporting-files)
+      (setq files (delete file files)))
+    (sort files 'string-lessp))
+  "Files which will be compiled and installed.")
+
+(defun dgnushack-exporting-files ()
+  "Print name of files which will be installed."
+  (princ (mapconcat 'identity dgnushack-exporting-files " ")))
 
 (defun dgnushack-compile (&optional warn)
   ;;(setq byte-compile-dynamic t)
@@ -200,25 +248,20 @@ You also then need to add the following to the lisp/dgnushack.el file:
      (push \"~/lisp/custom\" load-path)
 
 Modify to suit your needs."))
-  (let ((files (directory-files srcdir nil "^[^=].*\\.el$"))
-       ;;(byte-compile-generate-call-tree t)
+
+  ;; Show `load-path'.
+  (message "load-path=(\"%s\")"
+          (mapconcat 'identity load-path "\"\n           \""))
+
+  (dolist (file dgnushack-exporting-files)
+    (setq file (expand-file-name file srcdir))
+    (when (and (file-exists-p (setq elc (concat file "c")))
+              (file-newer-than-file-p file elc))
+      (delete-file elc)))
+
+  (let (;;(byte-compile-generate-call-tree t)
+       (files dgnushack-exporting-files)
        file elc)
-    (mapcar
-     (lambda (el) (setq files (delete el files)))
-     (nconc
-      dgnushack-tool-files
-      (condition-case nil
-         (progn (require 'w3-forms) nil)
-       (error '("nnweb.el" "nnlistserv.el" "nnultimate.el"
-                "nnslashdot.el" "nnwarchive.el" "webmail.el")))
-      (condition-case nil
-         (progn (require 'bbdb) nil)
-       (error '("gnus-bbdb.el")))
-      (unless (featurep 'xemacs)
-       '("gnus-xmas.el" "gnus-picon.el" "messagexmas.el"
-         "nnheaderxm.el" "smiley.el" "gnus-ml.el"))
-      (when (and (fboundp 'md5) (subrp (symbol-function 'md5)))
-       '("md5.el"))))
     (while (setq file (pop files))
       (setq file (expand-file-name file srcdir))
       (when (or (not (file-exists-p (setq elc (concat file "c"))))
@@ -231,136 +274,6 @@ Modify to suit your needs."))
   (byte-recompile-directory "." 0))
 
 \f
-;; Avoid byte-compile warnings.
-(defvar gnus-product-name)
-(defvar early-package-load-path)
-(defvar early-packages)
-(defvar last-package-load-path)
-(defvar last-packages)
-(defvar late-package-load-path)
-(defvar late-packages)
-
-(defconst dgnushack-info-file-regexp
-  (concat "^\\(gnus\\|message\\|emacs-mime\\|gnus-ja\\|message-ja\\)"
-         "\\.info\\(-[0-9]+\\)?$"))
-
-(defconst dgnushack-texi-file-regexp
-  "^\\(gnus\\|message\\|emacs-mime\\|gnus-ja\\|message-ja\\)\\.texi$")
-
-(defun dgnushack-make-package ()
-  (require 'gnus)
-  (let* ((product-name (downcase gnus-product-name))
-        (lisp-dir (concat "lisp/" product-name "/"))
-        make-backup-files)
-
-    (message "Updating autoloads for directory %s..." default-directory)
-    (let ((generated-autoload-file "auto-autoloads.el")
-         noninteractive
-         (omsg (symbol-function 'message)))
-      (defun message (fmt &rest args)
-       (cond ((and (string-equal "Generating autoloads for %s..." fmt)
-                   (file-exists-p (file-name-nondirectory (car args))))
-              (funcall omsg fmt (file-name-nondirectory (car args))))
-             ((string-equal "No autoloads found in %s" fmt))
-             ((string-equal "Generating autoloads for %s...done" fmt))
-             (t (apply omsg fmt args))))
-      (unwind-protect
-         (update-autoloads-from-directory default-directory)
-       (fset 'message omsg)))
-    (byte-compile-file "auto-autoloads.el")
-
-    (with-temp-buffer
-      (let ((standard-output (current-buffer)))
-       (Custom-make-dependencies "."))
-      (message "%s" (buffer-string)))
-    (require 'cus-load)
-    (byte-compile-file "custom-load.el")
-
-    (message "Generating MANIFEST.%s for the package..." product-name)
-    (with-temp-buffer
-      (insert "pkginfo/MANIFEST." product-name "\n")
-      (mapcar
-       (lambda (file)
-        (unless (member file dgnushack-unexported-files)
-          (insert lisp-dir file "\n")))
-       (sort (directory-files "." nil "\\.elc?$") 'string-lessp))
-      (mapcar
-       (lambda (file) (insert "info/" file "\n"))
-       (sort (directory-files "../texi/" nil dgnushack-info-file-regexp)
-            'string-lessp))
-      (write-file (concat "../MANIFEST." product-name)))))
-
-(defun dgnushack-install-package ()
-  (let ((package-dir (car command-line-args-left))
-       dirs info-dir pkginfo-dir product-name lisp-dir manifest files)
-    (unless package-dir
-      (when (boundp 'early-packages)
-       (setq dirs (delq nil (append (when early-package-load-path
-                                      early-packages)
-                                    (when late-package-load-path
-                                      late-packages)
-                                    (when last-package-load-path
-                                      last-packages))))
-       (while (and dirs (not package-dir))
-         (when (file-exists-p (car dirs))
-           (setq package-dir (car dirs)
-                 dirs (cdr dirs))))))
-    (unless package-dir
-      (error "%s" "
-You must specify the name of the package path as follows:
-
-% make install-package PACKAGEDIR=/usr/local/lib/xemacs/xemacs-packages
-"
-            ))
-    (setq info-dir (expand-file-name "info/" package-dir)
-         pkginfo-dir (expand-file-name "pkginfo/" package-dir))
-    (require 'gnus)
-    (setq product-name (downcase gnus-product-name)
-         lisp-dir (expand-file-name (concat "lisp/" product-name "/")
-                                    package-dir)
-         manifest (concat "MANIFEST." product-name))
-
-    (unless (file-directory-p lisp-dir)
-      (make-directory lisp-dir t))
-    (unless (file-directory-p info-dir)
-      (make-directory info-dir))
-    (unless (file-directory-p pkginfo-dir)
-      (make-directory pkginfo-dir))
-
-    (setq files (sort (directory-files "." nil "\\.elc?$") 'string-lessp))
-    (mapcar (lambda (el) (setq files (delete el files)))
-           dgnushack-unexported-files)
-    (mapcar
-     (lambda (file)
-       (unless (or (member file files)
-                  (not (string-match "\\.elc?$" file)))
-        (setq file (expand-file-name file lisp-dir))
-        (message "Removing %s..." file)
-        (condition-case nil
-            (delete-file file)
-          (error nil))))
-     (directory-files lisp-dir nil nil nil t))
-    (mapcar
-     (lambda (file)
-       (message "Copying %s to %s..." file lisp-dir)
-       (copy-file file (expand-file-name file lisp-dir) t t))
-     files)
-
-    (mapcar
-     (lambda (file)
-       (message "Copying ../texi/%s to %s..." file info-dir)
-       (copy-file (expand-file-name file "../texi/")
-                 (expand-file-name file info-dir)
-                 t t))
-     (sort (directory-files "../texi/" nil dgnushack-info-file-regexp)
-          'string-lessp))
-
-    (message "Copying ../%s to %s..." manifest pkginfo-dir)
-    (copy-file (expand-file-name manifest "../")
-              (expand-file-name manifest pkginfo-dir) t t)
-
-    (message "Done")))
-
 (defun dgnushack-texi-add-suffix-and-format ()
   (dgnushack-texi-format t))
 
@@ -383,28 +296,36 @@ You must specify the name of the package path as follows:
                     command-line-args-left (cdr command-line-args-left)))
              ((file-directory-p file)
               (setq command-line-args-left
-                    (nconc (directory-files file)
+                    (nconc (directory-files file nil nil t)
                            (cdr command-line-args-left))))
              (t
               (setq files (cons file files)
                     command-line-args-left (cdr command-line-args-left)))))
-      (while files
-       (setq file (car files)
-             files (cdr files))
+      (while (setq file (pop files))
        (condition-case err
            (progn
              (if buffer-file-name (kill-buffer (current-buffer)))
              (find-file file)
+             (buffer-disable-undo (current-buffer))
              (if (boundp 'MULE)
                  (setq output-coding-system (symbol-value
                                              'file-coding-system))
                (setq coding-system-for-write buffer-file-coding-system))
+             ;; Remove ignored areas first.
+             (while (re-search-forward "^@ignore[\t\r ]*$" nil t)
+               (delete-region (match-beginning 0)
+                              (if (re-search-forward
+                                   "^@end[\t ]+ignore[\t\r ]*$" nil t)
+                                  (1+ (match-end 0))
+                                (point-max))))
+             (goto-char (point-min))
+             ;; Add suffix if it is needed.
              (when (and addsuffix
                         (re-search-forward
                          "^@setfilename[\t ]+\\([^\t\n ]+\\)" nil t)
                         (not (string-match "\\.info$" (match-string 1))))
-               (insert ".info"))
-             (buffer-disable-undo (current-buffer))
+               (insert ".info")
+               (goto-char (point-min)))
              ;; process @include before updating node
              ;; This might produce some problem if we use @lowersection or
              ;; such.
@@ -462,4 +383,109 @@ You must specify the name of the package path as follows:
           (setq error 1))))
       (kill-emacs error))))
 
+\f
+(defconst dgnushack-info-file-regexp-en
+  (let ((names '("gnus" "message" "emacs-mime"))
+       regexp name)
+    (while (setq name (pop names))
+      (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
+                          (when names "\\|"))))
+    regexp)
+  "Regexp matching English info files.")
+
+(defconst dgnushack-info-file-regexp-ja
+  (let ((names '("gnus-ja" "message-ja"))
+       regexp name)
+    (while (setq name (pop names))
+      (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
+                          (when names "\\|"))))
+    regexp)
+  "Regexp matching Japanese info files.")
+
+(defun dgnushack-make-autoloads ()
+  "Make auto-autoloads.el, custom-load.el and then compile them."
+  (let (make-backup-files)
+    (message "Updating autoloads for directory %s..." default-directory)
+    (let ((generated-autoload-file "auto-autoloads.el")
+         (si:message (symbol-function 'message))
+         noninteractive)
+      (defun message (fmt &rest args)
+       (cond ((and (string-equal "Generating autoloads for %s..." fmt)
+                   (file-exists-p (file-name-nondirectory (car args))))
+              (funcall si:message fmt (file-name-nondirectory (car args))))
+             ((string-equal "No autoloads found in %s" fmt))
+             ((string-equal "Generating autoloads for %s...done" fmt))
+             (t (apply si:message fmt args))))
+      (unwind-protect
+         (update-autoloads-from-directory default-directory)
+       (fset 'message si:message)))
+    (byte-compile-file "auto-autoloads.el")
+    (with-temp-buffer
+      (let ((standard-output (current-buffer)))
+       (Custom-make-dependencies "."))
+      (message "%s" (buffer-string)))
+    (require 'cus-load)
+    (byte-compile-file "custom-load.el")))
+
+(defun dgnushack-remove-extra-files-in-package ()
+  "Remove extra files in the lisp directory of the XEmacs package."
+  (let ((lisp-dir (expand-file-name (concat "lisp/"
+                                           ;; GNUS_PRODUCT_NAME
+                                           (cadr command-line-args-left)
+                                           "/")
+                                   ;; PACKAGEDIR
+                                   (car command-line-args-left))))
+    (when (file-directory-p lisp-dir)
+      (let (files)
+       (dolist (file dgnushack-exporting-files)
+         (setq files (nconc files (list file (concat file "c")))))
+       (dolist (file (directory-files lisp-dir nil nil t t))
+         (unless (member file files)
+           (setq file (expand-file-name file lisp-dir))
+           (message "Removing %s..." file)
+           (condition-case nil
+               (delete-file file)
+             (error nil))))))))
+
+(defun dgnushack-install-package-manifest ()
+  "Install MANIFEST file as an XEmacs package."
+  (let* ((package-dir (car command-line-args-left))
+        (product-name (cadr command-line-args-left))
+        (name (expand-file-name (concat "pkginfo/MANIFEST." product-name)
+                                package-dir))
+        make-backup-files)
+    (message "Generating %s..." name)
+    (with-temp-file name
+      (insert "pkginfo/MANIFEST." product-name "\n")
+      (let ((lisp-dir (concat "lisp/" product-name "/"))
+           (files (sort (directory-files "." nil "\\.elc?$" t) 'string-lessp))
+           file)
+       (while (setq file (pop files))
+         (unless (member file dgnushack-unexporting-files)
+           (insert lisp-dir file "\n")))
+       (setq files
+             (sort (directory-files "../texi/" nil
+                                    (concat dgnushack-info-file-regexp-en
+                                            "\\|"
+                                            dgnushack-info-file-regexp-ja)
+                                    t)
+                   'string-lessp))
+       (while (setq file (pop files))
+         (insert "info/" file "\n"))))))
+
+\f
+(define-compiler-macro describe-key-briefly (&whole form key &optional insert)
+  (if (condition-case nil
+         (progn
+           (describe-key-briefly '((())) nil)
+           t)
+       (wrong-number-of-arguments nil);; Old Emacsen.
+       (error t))
+      form
+    (if insert
+       `(if ,insert
+            (insert (funcall 'describe-key-briefly ,key))
+          (funcall 'describe-key-briefly ,key))
+      `(funcall 'describe-key-briefly ,key))))
+
 ;;; dgnushack.el ends here