]> git.eshelyaron.com Git - emacs.git/commitdiff
(blink-matching-paren-distance): Bump to 100k. (Bug#3889)
authorGlenn Morris <rgm@gnu.org>
Wed, 22 Jul 2009 02:35:45 +0000 (02:35 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 22 Jul 2009 02:35:45 +0000 (02:35 +0000)
lisp/ChangeLog
lisp/simple.el

index 8f8e76945881561d20932c3499242102984b12dc..1babedfb15a21671a1114dd3c55ef47dfc19926d 100644 (file)
@@ -1,3 +1,13 @@
+2009-07-22  Glenn Morris  <rgm@gnu.org>
+
+       * 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  <cyd@stupidchicken.com>
 
        * mail/rmailedit.el (rmail-edit-mode): Use
index 23a503ca17638062ed5720a8be79af9abee5d53a..e9deafbfb6e16c6774e8d6fbcb5f6b007737b44d 100644 (file)
@@ -5254,9 +5254,10 @@ It is also ignored if `show-paren-mode' is enabled."
   :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)