0
|
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
|
70
|
2 ;; Copyright (C) 1994,95,96 Free Software Foundation, Inc.
|
0
|
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
|
70
|
29 (require 'cl)
|
|
30 (setq load-path (cons "." load-path))
|
16
|
31
|
70
|
32 (setq custom-file "/THIS FILE DOES NOT eXiST!")
|
0
|
33
|
2
|
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)
|
30
|
39
|
0
|
40 (defun dgnushack-compile ()
|
70
|
41 ;(setq byte-compile-dynamic t)
|
0
|
42 (let ((files (directory-files "." nil ".el$"))
|
|
43 (xemacs (string-match "XEmacs" emacs-version))
|
70
|
44 byte-compile-warnings file)
|
|
45 (while files
|
|
46 (setq file (car files)
|
|
47 files (cdr files))
|
|
48 (cond
|
|
49 ((or (string= file "custom.el") (string= file "browse-url.el"))
|
|
50 (setq byte-compile-warnings nil))
|
|
51 (xemacs
|
|
52 (setq byte-compile-warnings
|
|
53 '(free-vars unresolved callargs redefine)))
|
|
54 (t
|
|
55 (setq byte-compile-warnings
|
|
56 '(free-vars unresolved callargs redefine obsolete))))
|
|
57 (when (or (not (member file '("gnus-xmas.el" "gnus-picon.el"
|
0
|
58 "messagexmas.el" "nnheaderxm.el"
|
|
59 "smiley.el")))
|
|
60 xemacs)
|
70
|
61 (condition-case ()
|
|
62 (byte-compile-file file)
|
|
63 (error nil))))))
|
0
|
64
|
|
65 (defun dgnushack-recompile ()
|
|
66 (require 'gnus)
|
|
67 (byte-recompile-directory "." 0))
|
|
68
|
70
|
69 ;;; dgnushack.el ends here
|
0
|
70
|