# HG changeset patch # User Glenn Morris # Date 1248230145 0 # Node ID afb0c07ee9cb2dc618724da4ff43cd25c4514436 # Parent 27b0fc89d852c7443907f038a946159830bc17a0 (blink-matching-paren-distance): Bump to 100k. (Bug#3889) diff -r 27b0fc89d852 -r afb0c07ee9cb lisp/ChangeLog --- a/lisp/ChangeLog Wed Jul 22 02:34:51 2009 +0000 +++ b/lisp/ChangeLog Wed Jul 22 02:35:45 2009 +0000 @@ -1,3 +1,13 @@ +2009-07-22 Glenn Morris + + * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889) + + * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from + defcustom doc. + (list-load-path-shadows): Optionally, just return shadows as a string. + + * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows. + 2009-07-21 Chong Yidong * mail/rmailedit.el (rmail-edit-mode): Use diff -r 27b0fc89d852 -r afb0c07ee9cb lisp/simple.el --- a/lisp/simple.el Wed Jul 22 02:34:51 2009 +0000 +++ b/lisp/simple.el Wed Jul 22 02:35:45 2009 +0000 @@ -5254,9 +5254,10 @@ :type 'boolean :group 'paren-blinking) -(defcustom blink-matching-paren-distance (* 25 1024) +(defcustom blink-matching-paren-distance (* 100 1024) "If non-nil, maximum distance to search backwards for matching open-paren. If nil, search stops at the beginning of the accessible portion of the buffer." + :version "23.2" ; 25->100k :type '(choice (const nil) integer) :group 'paren-blinking)