*** 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 (require 'cl)
30 (setq load-path (cons "." load-path))
31
32 (defun dgnushack-compile ()
33   ;(setq byte-compile-dynamic t)
34   (let ((files (directory-files "." nil ".el$"))
35         (xemacs (string-match "XEmacs" emacs-version))
36         byte-compile-warnings file)
37     (while files
38       (setq file (car files)
39             files (cdr files))
40       (cond 
41        ((or (string= file "custom.el") (string= file "browse-url.el"))
42         (setq byte-compile-warnings nil))
43        (xemacs
44         (setq byte-compile-warnings 
45               '(free-vars unresolved callargs redefine)))
46        (t
47         (setq byte-compile-warnings 
48               '(free-vars unresolved callargs redefine obsolete))))
49       (when (or (not (member file '("gnus-xmas.el" "gnus-picon.el" 
50                                     "message-xmas.el" "nnheader-ems.el")))
51                 xemacs)
52         (condition-case ()
53             (byte-compile-file file)
54           (error nil))))))
55
56 (defun dgnushack-recompile ()
57   (require 'gnus)
58   (byte-recompile-directory "." 0))
59
60 ;;; dgnushack.el ends here  
61