*** empty log message ***
[gnus] / lisp / dgnushack.el
index 9979de4..d471ad6 100644 (file)
@@ -1,5 +1,5 @@
 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
-;; Copyright (C) 1994,95 Free Software Foundation, Inc.
+;; Copyright (C) 1994,95,96,97 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
 ;; Version: 4.19
 ;; 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, 675 Mass Ave, Cambridge, MA 02139, USA.
+;; 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:
 
-;; Is this really the only way to set the load path? Seems awfully
-;; kludgy to load this file just to do something as simple as
-;; that... Anyways, it won't be in the production code, so who cares?
-
 ;;; Code:
 
-(setq load-path (cons "." load-path))
+(fset 'facep 'ignore)
+
+(require 'cl)
+(require 'bytecomp)
+(push "." load-path)
+(require 'lpath)
+
+(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)))
+
+(setq byte-compile-warnings
+      '(free-vars unresolved callargs redefine))
+
+(defun dgnushack-compile ()
+  ;;(setq byte-compile-dynamic t)
+  (let ((files (directory-files "." nil ".el$"))
+       (xemacs (string-match "XEmacs" emacs-version))
+       ;;(byte-compile-generate-call-tree t)
+       byte-compile-warnings file elc)
+    (condition-case ()
+       (require 'w3-forms)
+      (error (setq files (delete "nnweb.el" files))))
+    (while (setq file (pop files))
+      (when (or (not (member file '("gnus-xmas.el" "gnus-picon.el"
+                                   "messagexmas.el" "nnheaderxm.el"
+                                   "smiley.el")))
+               xemacs)
+       (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))
 
-;;; dgnushack.el ends here  
+;;; dgnushack.el ends here