Mercurial > emacs
comparison lisp/simple.el @ 65173:9398f33d6515
(blink-matching-paren-distance): Document the meaning of nil value,
and allow to customize to nil.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 27 Aug 2005 12:30:36 +0000 |
parents | 942d4ce7c22d |
children | 0a6b52c97d53 |
comparison
equal
deleted
inserted
replaced
65172:0e4df13dd5ba | 65173:9398f33d6515 |
---|---|
4205 when it is off screen)." | 4205 when it is off screen)." |
4206 :type 'boolean | 4206 :type 'boolean |
4207 :group 'paren-blinking) | 4207 :group 'paren-blinking) |
4208 | 4208 |
4209 (defcustom blink-matching-paren-distance (* 25 1024) | 4209 (defcustom blink-matching-paren-distance (* 25 1024) |
4210 "*If non-nil, is maximum distance to search for matching open-paren." | 4210 "*If non-nil, maximum distance to search backwards for matching open-paren. |
4211 :type 'integer | 4211 If nil, search stops at the beginning of the accessible portion of the buffer." |
4212 :type '(choice (const nil) integer) | |
4212 :group 'paren-blinking) | 4213 :group 'paren-blinking) |
4213 | 4214 |
4214 (defcustom blink-matching-delay 1 | 4215 (defcustom blink-matching-delay 1 |
4215 "*Time in seconds to delay after showing a matching paren." | 4216 "*Time in seconds to delay after showing a matching paren." |
4216 :type 'number | 4217 :type 'number |