changeset 47318:1a358c4f4b8b

(byte-compile-delete-errors): Default to nil.
author Richard M. Stallman <rms@gnu.org>
date Mon, 09 Sep 2002 00:28:24 +0000
parents b4a5fd1d144c
children 10192cdcf7f0
files lisp/emacs-lisp/bytecomp.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el	Mon Sep 09 00:28:00 2002 +0000
+++ b/lisp/emacs-lisp/bytecomp.el	Mon Sep 09 00:28:24 2002 +0000
@@ -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 @@
 		 (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