From 66d44a363360ff262638104983bb689699ee49bc Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Aug 2005 12:30:36 +0000 Subject: [PATCH] (blink-matching-paren-distance): Document the meaning of nil value, and allow to customize to nil. --- lisp/simple.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/simple.el b/lisp/simple.el index cf291ca44ff..a0eeaa2d00f 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4207,8 +4207,9 @@ when it is off screen)." :group 'paren-blinking) (defcustom blink-matching-paren-distance (* 25 1024) - "*If non-nil, is maximum distance to search for matching open-paren." - :type 'integer + "*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." + :type '(choice (const nil) integer) :group 'paren-blinking) (defcustom blink-matching-delay 1 -- 2.39.2