]> git.eshelyaron.com Git - emacs.git/commitdiff
(checkdoc-minor-mode-string): New.
authorGlenn Morris <rgm@gnu.org>
Thu, 6 Sep 2007 05:19:23 +0000 (05:19 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 6 Sep 2007 05:19:23 +0000 (05:19 +0000)
(checkdoc-minor-mode): Allow user to specify lighter via
checkdoc-minor-mode-string.

lisp/emacs-lisp/checkdoc.el

index e1835d75fcb364fb3539cd3496e9a867839fac14..1b32732c59a19a2711f5d53d079a329afffb8924 100644 (file)
   :group 'lisp
   :version "20.3")
 
+(defcustom checkdoc-minor-mode-string " CDoc"
+  "*String to display in mode line when Checkdoc mode is enabled; nil for none."
+  :type '(choice string (const :tag "None" nil))
+  :group 'checkdoc
+  :version "23.1")
+
 (defcustom checkdoc-autofix-flag 'semiautomatic
   "Non-nil means attempt auto-fixing of doc strings.
 If this value is the symbol `query', then the user is queried before
@@ -1251,7 +1257,7 @@ bound to \\<checkdoc-minor-mode-map>\\[checkdoc-eval-defun] and `checkdoc-eval-c
 checking of documentation strings.
 
 \\{checkdoc-minor-mode-map}"
-  nil " CDoc" nil
+  nil checkdoc-minor-mode-string nil
   :group 'checkdoc)
 
 ;;; Subst utils