summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-09-29 18:24:24 +0000
committerRichard M. Stallman <rms@gnu.org>2002-09-29 18:24:24 +0000
commit5af47e93a2bb05fc5a1a70db47981f1fea3976b8 (patch)
tree1b4ea7ce18875809316a9645222d1abf3070d22a
parentc857be22cab33220160c7ffbbb598c6e7f26fe71 (diff)
downloademacs-5af47e93a2bb05fc5a1a70db47981f1fea3976b8.tar.gz
(byte-compile-delete-errors): Default to nil.
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 7e6fbeea10c..885394e72d4 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.84 $")
+(defconst byte-compile-version "$Revision: 2.85 $")
;; This file is part of GNU Emacs.
@@ -274,7 +274,7 @@ t means do all optimizations.
(const :tag "source-level" source)
(const :tag "byte-level" byte)))
-(defcustom byte-compile-delete-errors t
+(defcustom byte-compile-delete-errors nil
"*If non-nil, the optimizer may delete forms that may signal an error.
This includes variable references and calls to functions such as `car'."
:group 'bytecomp