aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-09-09 00:28:38 +0000
committerRichard M. Stallman2002-09-09 00:28:38 +0000
commitcd91e34cb48cabe2a3e9a295a9f5eaf3b9e298d0 (patch)
tree7de19d28f8cca9befbb3bb3747a0cfbe1195e308
parentcd63e3a185357e4a8a118173ef31faac5286287d (diff)
downloademacs-cd91e34cb48cabe2a3e9a295a9f5eaf3b9e298d0.tar.gz
emacs-cd91e34cb48cabe2a3e9a295a9f5eaf3b9e298d0.zip
(byte-compile-delete-errors): Default to nil.
-rw-r--r--lisp/ChangeLog20
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
2 files changed, 22 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ac5973f7ba8..da856914d32 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,23 @@
12002-09-08 Richard M. Stallman <rms@gnu.org>
2
3 * emacs-lisp/bytecomp.el (byte-compile-delete-errors): Default to nil.
4
5 * simple.el (undo-elt-in-region): Fix one-off error at END.
6 (forward-visible-line): Handle invisibility by ignoring
7 invisible newlines. Also include entire invisible lines beyond
8 the stopping point.
9
10 * cus-edit.el (custom-save-variables, custom-save-faces):
11 Clarify the comments written into .emacs.
12
132002-09-08 Markus Triska <triska@gmx.at>
14
15 * play/doctor.el (doctor-doc): Recognize question words
16 and use qlist. Use doctor-shorten's return value.
17 (doctor-shorten): Compute a return value, don't alter `sent'.
18 (doctor-hates1): Add a question mark.
19 (doctor-strangelove): Unused function deleted.
20
12002-09-08 Kim F. Storm <storm@cua.dk> 212002-09-08 Kim F. Storm <storm@cua.dk>
2 22
3 * kmacro.el (kmacro-end-and-call-macro): New command to end and 23 * kmacro.el (kmacro-end-and-call-macro): New command to end and
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 @@
10 10
11;;; This version incorporates changes up to version 2.10 of the 11;;; This version incorporates changes up to version 2.10 of the
12;;; Zawinski-Furuseth compiler. 12;;; Zawinski-Furuseth compiler.
13(defconst byte-compile-version "$Revision: 2.110 $") 13(defconst byte-compile-version "$Revision: 2.111 $")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.
16 16
@@ -274,7 +274,7 @@ t means do all optimizations.
274 (const :tag "source-level" source) 274 (const :tag "source-level" source)
275 (const :tag "byte-level" byte))) 275 (const :tag "byte-level" byte)))
276 276
277(defcustom byte-compile-delete-errors t 277(defcustom byte-compile-delete-errors nil
278 "*If non-nil, the optimizer may delete forms that may signal an error. 278 "*If non-nil, the optimizer may delete forms that may signal an error.
279This includes variable references and calls to functions such as `car'." 279This includes variable references and calls to functions such as `car'."
280 :group 'bytecomp 280 :group 'bytecomp