*** empty log message ***
[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 (defadvice require (before require-avoid-compiled activate)
41   ;; (feature filename)
42   "Avoid loading .elc files."
43   ;; Ensure a second argument to require is supplied that explicitly
44   ;; specifies loading the .el version of the file.
45   (let ((filename (ad-get-arg 1)))
46     (or filename (setq filename (symbol-name (ad-get-arg 0))))
47     (save-match-data
48       (cond ((string-match "\\.el\\'" filename)
49              nil)
50             ((string-match "\\.elc\\'" filename)
51              (setq filename (replace-match ".el" t t filename)))
52             (t
53              (setq filename (concat filename ".el")))))
54     (ad-set-arg 1 filename)))
55
56 (eval-and-compile
57   (unless (string-match "XEmacs" emacs-version)
58     (fset 'get-popup-menu-response 'ignore)
59     (fset 'event-object 'ignore)
60     (fset 'x-defined-colors 'ignore)
61     (fset 'read-color 'ignore)))
62
63 (defun dgnushack-compile ()
64   ;;(setq byte-compile-dynamic t)
65   (let ((files (directory-files "." nil ".el$"))
66         (xemacs (string-match "XEmacs" emacs-version))
67         ;;(byte-compile-generate-call-tree t)
68         byte-compile-warnings file)
69     (condition-case ()
70         (require 'w3-forms)
71       (error (setq files (delete "nnweb.el" files))))
72     (while (setq file (pop files))
73       (cond 
74        ((or (string= file "custom.el") (string= file "browse-url.el"))
75         (setq byte-compile-warnings nil))
76        (xemacs
77         (setq byte-compile-warnings 
78               '(free-vars unresolved callargs redefine)))
79        (t
80         (setq byte-compile-warnings 
81               '(free-vars unresolved callargs redefine obsolete))))
82       (when (or (not (member file '("gnus-xmas.el" "gnus-picon.el" 
83                                     "messagexmas.el" "nnheaderxm.el"
84                                     "smiley.el")))
85                 xemacs)
86         (when (or (not (file-exists-p (concat file "c")))
87                   (file-newer-than-file-p file (concat file "c")))
88           (condition-case ()
89               (byte-compile-file file)
90             (error nil)))))))
91
92 (defun dgnushack-recompile ()
93   (require 'gnus)
94   (byte-recompile-directory "." 0))
95
96 ;;; dgnushack.el ends here  
97