aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-06-22 00:41:46 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:01 -0400
commit4c62200977c0483198ee28c4e1bb940e19300ee2 (patch)
treef1edc4c5f8f7b66812ea2113dc45b4f63322386a /lisp
parent9217219924ae5245a84e2690121fbb461119243c (diff)
make gnus-byte-compile a nop
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/gnus-util.el14
1 files changed, 1 insertions, 13 deletions
diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el
index 62977576a0..1a0c9b9b6a 100644
--- a/lisp/gnus/gnus-util.el
+++ b/lisp/gnus/gnus-util.el
@@ -1449,19 +1449,7 @@ is run."
(defun gnus-byte-compile (form)
"Byte-compile FORM if `gnus-use-byte-compile' is non-nil."
- (if gnus-use-byte-compile
- (progn
- (condition-case nil
- ;; Work around a bug in XEmacs 21.4
- (require 'byte-optimize)
- (error))
- (require 'bytecomp)
- (defalias 'gnus-byte-compile
- (lambda (form)
- (let ((byte-compile-warnings '(unresolved callargs redefine)))
- (byte-compile form))))
- (gnus-byte-compile form))
- form))
+ form)
(defun gnus-remassoc (key alist)
"Delete by side effect any elements of LIST whose car is `equal' to KEY.