diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-09-09 00:28:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-09-09 00:28:38 +0000 |
commit | cd91e34cb48cabe2a3e9a295a9f5eaf3b9e298d0 (patch) | |
tree | 7de19d28f8cca9befbb3bb3747a0cfbe1195e308 /lisp/emacs-lisp/bytecomp.el | |
parent | cd63e3a185357e4a8a118173ef31faac5286287d (diff) | |
download | emacs-cd91e34cb48cabe2a3e9a295a9f5eaf3b9e298d0.tar.gz emacs-cd91e34cb48cabe2a3e9a295a9f5eaf3b9e298d0.tar.bz2 emacs-cd91e34cb48cabe2a3e9a295a9f5eaf3b9e298d0.zip |
(byte-compile-delete-errors): Default to nil.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-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 4e48a17023d..e83f07a4d3c 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.110 $") +(defconst byte-compile-version "$Revision: 2.111 $") ;; 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 |