ac4ef67716ff72e6f77c092b588d469d03596d7f
[gnus] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994,95,96 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;; Version: 4.19
6 ;; Keywords: news, path
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (fset 'facep 'ignore)
30
31 (require 'cl)
32 (push "." load-path)
33
34 (defalias 'device-sound-enabled-p 'ignore)
35 (defalias 'play-sound-file 'ignore)
36 (defalias 'nndb-request-article 'ignore)
37 (defalias 'efs-re-read-dir 'ignore)
38 (defalias 'ange-ftp-re-read-dir 'ignore)
39
40 (fset 'orig-require (symbol-function 'require))
41
42 (defun require (package &optional file)
43   "Avoid loading .elc files."
44   (let ((filename (concat (symbol-name package) ".el")))
45     (condition-case err
46         (orig-require package filename)
47       (error
48        (orig-require package)))))
49
50 (eval-and-compile
51   (unless (string-match "XEmacs" emacs-version)
52     (fset 'get-popup-menu-response 'ignore)
53     (fset 'event-object 'ignore)
54     (fset 'x-defined-colors 'ignore)
55     (fset 'read-color 'ignore)))
56
57 (defun dgnushack-compile ()
58   ;;(setq byte-compile-dynamic t)
59   (let ((files (directory-files "." nil ".el$"))
60         (xemacs (string-match "XEmacs" emacs-version))
61         ;;(byte-compile-generate-call-tree t)
62         byte-compile-warnings file elc)
63     (condition-case ()
64         (require 'w3-forms)
65       (error (setq files (delete "nnweb.el" files))))
66     (while (setq file (pop files))
67       (cond 
68        ((or (string= file "custom.el") (string= file "browse-url.el"))
69         (setq byte-compile-warnings nil))
70        (xemacs
71         (setq byte-compile-warnings 
72               '(free-vars unresolved callargs redefine)))
73        (t
74         (setq byte-compile-warnings 
75               '(free-vars unresolved callargs redefine obsolete))))
76       (when (or (not (member file '("gnus-xmas.el" "gnus-picon.el" 
77                                     "messagexmas.el" "nnheaderxm.el"
78                                     "smiley.el")))
79                 xemacs)
80         (when (or (not (file-exists-p (setq elc (concat file "c"))))
81                   (file-newer-than-file-p file elc))
82           (ignore-errors
83             (byte-compile-file file)))))))
84
85 (defun dgnushack-recompile ()
86   (require 'gnus)
87   (byte-recompile-directory "." 0))
88
89 ;;; dgnushack.el ends here  
90