*** empty log message ***
[gnus] / lisp / dgnushack.el
index ddbf90c..001af75 100644 (file)
 ;; 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:
 
 ;;; Code:
 
-(setq load-path (cons "." load-path))
+(require 'cl)
+(push "." load-path)
+
+(setq custom-file "/THIS FILE DOES NOT eXiST!")
+
+(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)
 
 (defun dgnushack-compile ()
+  ;(setq byte-compile-dynamic t)
   (let ((files (directory-files "." nil ".el$"))
        (xemacs (string-match "XEmacs" emacs-version))
        byte-compile-warnings file)
+    (condition-case ()
+       (require 'w3-forms)
+      (error (setq files (delete "nnweb.el" files))))
     (while files
       (setq file (car files)
            files (cdr files))
        (t
        (setq byte-compile-warnings 
              '(free-vars unresolved callargs redefine obsolete))))
-      (and (or (and (not (string= file "gnus-xmas.el"))
-                   (not (string= file "x-easymenu.el"))
-                   (not (string= file "gnus-picon.el")))
-              xemacs)
-          (condition-case ()
-              (byte-compile-file file)
-            (error nil))))))
+      (when (or (not (member file '("gnus-xmas.el" "gnus-picon.el" 
+                                   "messagexmas.el" "nnheaderxm.el"
+                                   "smiley.el")))
+               xemacs)
+       (condition-case ()
+           (byte-compile-file file)
+         (error nil))))))
 
 (defun dgnushack-recompile ()
   (require 'gnus)