comparison lisp/simple.el @ 104023:afb0c07ee9cb

(blink-matching-paren-distance): Bump to 100k. (Bug#3889)
author Glenn Morris <rgm@gnu.org>
date Wed, 22 Jul 2009 02:35:45 +0000
parents 64c2a1f8f15d
children 97987e968cf8
comparison
equal deleted inserted replaced
104022:27b0fc89d852 104023:afb0c07ee9cb
5252 \(In that case, the open-paren is never shown.) 5252 \(In that case, the open-paren is never shown.)
5253 It is also ignored if `show-paren-mode' is enabled." 5253 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.
5259 If nil, search stops at the beginning of the accessible portion of the buffer." 5259 If 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
5263 (defcustom blink-matching-delay 1 5264 (defcustom blink-matching-delay 1
5264 "Time in seconds to delay after showing a matching paren." 5265 "Time in seconds to delay after showing a matching paren."