Mercurial > emacs
comparison lisp/emacs-lisp/checkdoc.el @ 22579:d0ad271c7774
(checkdoc-autofix-flag): Use `other'
widget type.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Wed, 24 Jun 1998 09:05:39 +0000 |
parents | dee11277c07d |
children | f72e7540940a |
comparison
equal
deleted
inserted
replaced
22578:f330ab785b83 | 22579:d0ad271c7774 |
---|---|
143 is `semiautomatic', or any other value, then simple fixes are made | 143 is `semiautomatic', or any other value, then simple fixes are made |
144 without asking, and complex changes are made by asking the user first. | 144 without asking, and complex changes are made by asking the user first. |
145 The value `never' is the same as nil, never ask or change anything." | 145 The value `never' is the same as nil, never ask or change anything." |
146 :group 'checkdoc | 146 :group 'checkdoc |
147 :type '(choice (const automatic) | 147 :type '(choice (const automatic) |
148 (const semiautomatic) | |
149 (const query) | 148 (const query) |
150 (const never))) | 149 (const never) |
150 (other :tag "semiautomatic" semiautomatic))) | |
151 | 151 |
152 (defcustom checkdoc-bouncy-flag t | 152 (defcustom checkdoc-bouncy-flag t |
153 "*Non-nil means to \"bounce\" to auto-fix locations. | 153 "*Non-nil means to \"bounce\" to auto-fix locations. |
154 Setting this to nil will silently make fixes that require no user | 154 Setting this to nil will silently make fixes that require no user |
155 interaction. See `checkdoc-autofix-flag' for auto-fixing details." | 155 interaction. See `checkdoc-autofix-flag' for auto-fixing details." |