Mercurial > emacs
comparison lisp/paren.el @ 24650:90f146dfd6e7
(show-paren-mode): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 27 Apr 1999 19:10:09 +0000 |
parents | d0b40f823255 |
children | 1b1edbd429ea |
comparison
equal
deleted
inserted
replaced
24649:ce2b5ccac297 | 24650:90f146dfd6e7 |
---|---|
42 | 42 |
43 (defcustom show-paren-mode nil | 43 (defcustom show-paren-mode nil |
44 "Toggle Show Paren mode. | 44 "Toggle Show Paren mode. |
45 When Show Paren mode is enabled, any matching parenthesis is highlighted | 45 When Show Paren mode is enabled, any matching parenthesis is highlighted |
46 after `show-paren-delay' seconds of Emacs idle time. | 46 after `show-paren-delay' seconds of Emacs idle time. |
47 This variable should be set only with \\[customize], which is equivalent | 47 Setting this variable directly does not take effect; |
48 to using the function `show-paren-mode'." | 48 use either \\[customize] or the function `show-paren-mode'." |
49 :set (lambda (symbol value) | 49 :set (lambda (symbol value) |
50 (show-paren-mode (or value 0))) | 50 (show-paren-mode (or value 0))) |
51 :initialize 'custom-initialize-default | 51 :initialize 'custom-initialize-default |
52 :type 'boolean | 52 :type 'boolean |
53 :group 'paren-showing | 53 :group 'paren-showing |