1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
|
;;; dgnushack.el --- a hack to set the load path for byte-compiling
;; Copyright (C) 1994,95,96,97,98,99 Free Software Foundation, Inc.
;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
;; Katsumi Yamaoka <yamaoka@jpl.org>
;; Version: 4.19
;; Keywords: news, path
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;;; 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))
(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)))))
((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))))))
(fset 'facep 'ignore)
(require 'cl)
(require 'bytecomp)
;; Attempt to pickup the additional load-path(s).
(load (expand-file-name "./dgnuspath.el") nil nil t)
(condition-case err
(load "~/.lpath.el" t nil t)
(error (message "Error in \"~/.lpath.el\" file: %s" err)))
(push "." load-path)
(condition-case nil
(char-after)
(wrong-number-of-arguments
;; Optimize byte code for `char-after'.
(put 'char-after 'byte-optimizer 'byte-optimize-char-after)
(defun byte-optimize-char-after (form)
(if (null (cdr form))
'(char-after (point))
form))
(byte-defop-compiler char-after 0-1)))
(condition-case nil
(char-before)
(wrong-number-of-arguments
;; Optimize byte code for `char-before'.
(put 'char-before 'byte-optimizer 'byte-optimize-char-before)
(defun byte-optimize-char-before (form)
(if (null (cdr form))
'(char-before (point))
form))))
;; `char-after' and `char-before' must be well-behaved before lpath.el
;; is loaded. Because it requires `poe' via `path-util'.
(load "./lpath.el" nil t)
(unless (fboundp 'byte-compile-file-form-custom-declare-variable)
;; Bind defcustom'ed variables.
(put 'custom-declare-variable 'byte-hunk-handler
'byte-compile-file-form-custom-declare-variable)
(defun byte-compile-file-form-custom-declare-variable (form)
(if (memq 'free-vars byte-compile-warnings)
(setq byte-compile-bound-variables
(cons (nth 1 (nth 1 form)) byte-compile-bound-variables)))
form))
;; Bind functions defined by `defun-maybe'.
(put 'defun-maybe 'byte-hunk-handler 'byte-compile-file-form-defun-maybe)
(defun byte-compile-file-form-defun-maybe (form)
(if (and (not (fboundp (nth 1 form)))
(memq 'unresolved byte-compile-warnings))
(setq byte-compile-function-environment
(cons (cons (nth 1 form)
(cons 'lambda (cdr (cdr form))))
byte-compile-function-environment)))
form)
(condition-case nil
: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))))
;; Unknown variables and functions.
(unless (boundp 'buffer-file-coding-system)
(defvar buffer-file-coding-system (symbol-value 'file-coding-system)))
(autoload 'font-lock-set-defaults "font-lock")
(unless (fboundp 'coding-system-get)
(defalias 'coding-system-get 'ignore))
(when (boundp 'MULE)
(defalias 'find-coding-system 'ignore))
(unless (fboundp 'get-charset-property)
(defalias 'get-charset-property 'ignore))
(unless (featurep 'xemacs)
(defalias 'Custom-make-dependencies 'ignore)
(defalias 'toolbar-gnus 'ignore)
(defalias 'update-autoloads-from-directory 'ignore))
(autoload 'texinfo-parse-line-arg "texinfmt")
(unless (fboundp 'with-temp-buffer)
;; Pickup some macros.
(require 'emu))
(defalias 'device-sound-enabled-p 'ignore)
(defalias 'play-sound-file 'ignore)
(defalias 'nndb-request-article 'ignore)
(defalias 'efs-re-read-dir 'ignore)
(defalias 'ange-ftp-re-read-dir 'ignore)
(defalias 'define-mail-user-agent 'ignore)
(eval-and-compile
(unless (string-match "XEmacs" emacs-version)
(fset 'get-popup-menu-response 'ignore)
(fset 'event-object 'ignore)
(fset 'x-defined-colors 'ignore)
(fset 'read-color 'ignore)))
(defun dgnushack-compile (&optional warn)
;;(setq byte-compile-dynamic t)
(unless warn
(setq byte-compile-warnings
'(free-vars unresolved callargs redefine)))
(unless (locate-library "cus-edit")
(error "You do not seem to have Custom installed.
Fetch it from <URL:http://www.dina.kvl.dk/~abraham/custom/>.
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 (delete "dgnuspath.el"
(directory-files "." nil "^[^=].*\\.el$")))
(xemacs (string-match "XEmacs" emacs-version))
;;(byte-compile-generate-call-tree t)
file elc)
(condition-case ()
(require 'w3-forms)
(error (setq files (delete "nnweb.el" (delete "nnlistserv.el" files)))))
(condition-case ()
(require 'bbdb)
(error (setq files (delete "gnus-bbdb.el" files))))
(while (setq file (pop files))
(when (or (and (not xemacs)
(not (member file '("gnus-xmas.el" "gnus-picon.el"
"messagexmas.el" "nnheaderxm.el"
"smiley.el" "x-overlay.el"))))
(and xemacs
(not (member file '("md5.el")))))
(when (or (not (file-exists-p (setq elc (concat file "c"))))
(file-newer-than-file-p file elc))
(ignore-errors
(byte-compile-file file)))))))
(defun dgnushack-recompile ()
(require 'gnus)
(byte-recompile-directory "." 0))
;; 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 (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"
lisp-dir
(mapconcat
'identity
(sort (delete "dgnuspath.el"
(delete "patchs.elc"
(directory-files "." nil "\\.elc?$")))
'string-lessp)
(concat "\n" lisp-dir))
"\ninfo/"
(mapconcat
'identity
(sort (directory-files "../texi/"
nil dgnushack-info-file-regexp)
'string-lessp)
"\ninfo/")
"\n")
(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 (delete "dgnuspath.el"
(delete "dgnuspath.elc"
(directory-files "." nil "\\.elc?$")))
'string-lessp))
(mapcar
(lambda (file)
(unless (member file files)
(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))
(defun dgnushack-texi-format (&optional addsuffix)
(if (not noninteractive)
(error "batch-texinfo-format may only be used -batch."))
(require 'texinfmt)
(let ((auto-save-default nil)
(find-file-run-dired nil)
coding-system-for-write)
(let ((error 0)
file
(files ()))
(while command-line-args-left
(setq file (expand-file-name (car command-line-args-left)))
(cond ((not (file-exists-p file))
(message ">> %s does not exist!" file)
(setq error 1
command-line-args-left (cdr command-line-args-left)))
((file-directory-p file)
(setq command-line-args-left
(nconc (directory-files file)
(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))
(condition-case err
(progn
(if buffer-file-name (kill-buffer (current-buffer)))
(find-file file)
(setq coding-system-for-write buffer-file-coding-system)
(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))
;; process @include before updating node
;; This might produce some problem if we use @lowersection or
;; such.
(let ((input-directory default-directory)
(texinfo-command-end))
(while (re-search-forward "^@include" nil t)
(setq texinfo-command-end (point))
(let ((filename (concat input-directory
(texinfo-parse-line-arg))))
(re-search-backward "^@include")
(delete-region (point) (save-excursion
(forward-line 1)
(point)))
(message "Reading included file: %s" filename)
(save-excursion
(save-restriction
(narrow-to-region
(point)
(+ (point)
(car (cdr (insert-file-contents filename)))))
(goto-char (point-min))
;; Remove `@setfilename' line from included file,
;; if any, so @setfilename command not duplicated.
(if (re-search-forward "^@setfilename"
(save-excursion
(forward-line 100)
(point))
t)
(progn
(beginning-of-line)
(delete-region (point) (save-excursion
(forward-line 1)
(point))))))))))
(texinfo-mode)
(texinfo-every-node-update)
(set-buffer-modified-p nil)
(message "texinfo formatting %s..." file)
(texinfo-format-buffer nil)
(if (buffer-modified-p)
(progn (message "Saving modified %s" (buffer-file-name))
(save-buffer))))
(error
(message ">> Error: %s" (prin1-to-string err))
(message ">> point at")
(let ((s (buffer-substring (point)
(min (+ (point) 100)
(point-max))))
(tem 0))
(while (setq tem (string-match "\n+" s tem))
(setq s (concat (substring s 0 (match-beginning 0))
"\n>> "
(substring s (match-end 0)))
tem (1+ tem)))
(message ">> %s" s))
(setq error 1))))
(kill-emacs error))))
;;; dgnushack.el ends here
|