aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-07-22 02:35:45 +0000
committerGlenn Morris2009-07-22 02:35:45 +0000
commitfd413a376573cd0992303019d4d59ccc6336dc9c (patch)
tree4841cdf2e06899e8aa41fa5c8af8f2ed03e0e6ca
parent0b9521973ec469fc55ee0aa927cbaf2b4123459f (diff)
downloademacs-fd413a376573cd0992303019d4d59ccc6336dc9c.tar.gz
emacs-fd413a376573cd0992303019d4d59ccc6336dc9c.zip
(blink-matching-paren-distance): Bump to 100k. (Bug#3889)
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/simple.el3
2 files changed, 12 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8f8e7694588..1babedfb15a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12009-07-22 Glenn Morris <rgm@gnu.org>
2
3 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
4
5 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
6 defcustom doc.
7 (list-load-path-shadows): Optionally, just return shadows as a string.
8
9 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10
12009-07-21 Chong Yidong <cyd@stupidchicken.com> 112009-07-21 Chong Yidong <cyd@stupidchicken.com>
2 12
3 * mail/rmailedit.el (rmail-edit-mode): Use 13 * mail/rmailedit.el (rmail-edit-mode): Use
diff --git a/lisp/simple.el b/lisp/simple.el
index 23a503ca176..e9deafbfb6e 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5254,9 +5254,10 @@ It is also ignored if `show-paren-mode' is enabled."
5254 :type 'boolean 5254 :type 'boolean
5255 :group 'paren-blinking) 5255 :group 'paren-blinking)
5256 5256
5257(defcustom blink-matching-paren-distance (* 25 1024) 5257(defcustom blink-matching-paren-distance (* 100 1024)
5258 "If non-nil, maximum distance to search backwards for matching open-paren. 5258 "If non-nil, maximum distance to search backwards for matching open-paren.
5259If nil, search stops at the beginning of the accessible portion of the buffer." 5259If nil, search stops at the beginning of the accessible portion of the buffer."
5260 :version "23.2" ; 25->100k
5260 :type '(choice (const nil) integer) 5261 :type '(choice (const nil) integer)
5261 :group 'paren-blinking) 5262 :group 'paren-blinking)
5262 5263