Mercurial > hg > xemacs-beta
comparison man/lispref/customize.texi @ 412:697ef44129c6 r21-2-14
Import from CVS: tag r21-2-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:20:41 +0200 |
parents | 74fd4e045ea6 |
children |
comparison
equal
deleted
inserted
replaced
411:12e008d41344 | 412:697ef44129c6 |
---|---|
260 | 260 |
261 @example | 261 @example |
262 (defcustom show-paren-mode nil | 262 (defcustom show-paren-mode nil |
263 "Toggle Show Paren mode@enddots{}" | 263 "Toggle Show Paren mode@enddots{}" |
264 :set (lambda (symbol value) | 264 :set (lambda (symbol value) |
265 (show-paren-mode (or value 0))) | 265 (show-paren-mode (or value 0))) |
266 :initialize 'custom-initialize-default | 266 :initialize 'custom-initialize-default |
267 :type 'boolean | 267 :type 'boolean |
268 :group 'paren-showing | 268 :group 'paren-showing |
269 :require 'paren) | 269 :require 'paren) |
270 @end example | 270 @end example |