diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-03-24 22:50:34 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-03-24 22:50:34 +0000 |
commit | a0d88270979bdc599b189ccb6675d51c0beac9ed (patch) | |
tree | 892d1293b8736f34a6a0605d6f3da70735522c50 /lisp/emacs-lisp | |
parent | 4b96e28c9ba83f683d6a76e395c1eab1af2f9ea5 (diff) | |
download | emacs-a0d88270979bdc599b189ccb6675d51c0beac9ed.tar.gz emacs-a0d88270979bdc599b189ccb6675d51c0beac9ed.tar.bz2 emacs-a0d88270979bdc599b189ccb6675d51c0beac9ed.zip |
(byte-compile-eval): Disable new code.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 394b16fc3b4..b4ef87f0ab2 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -10,7 +10,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.63 $") +(defconst byte-compile-version "$Revision: 1.1 $") ;; This file is part of GNU Emacs. @@ -766,7 +766,7 @@ otherwise pop it") (let ((hist-orig load-history) (hist-nil-orig current-load-list)) (prog1 (eval x) - (when (memq 'noruntime byte-compile-warnings) + (when (and nil (memq 'noruntime byte-compile-warnings)) (let ((hist-new load-history) (hist-nil-new current-load-list)) (while (not (eq hist-new hist-orig)) |