Variable: checkdoc-minor-mode-map

checkdoc-minor-mode-map is a variable defined in checkdoc.el.gz.

Value

C-M-x      checkdoc-eval-defun
C-c ? B    checkdoc-ispell-current-buffer
C-c ? C    checkdoc-ispell-comments
C-c ? D    checkdoc-ispell
C-c ? M    checkdoc-ispell-message-text
C-c ? S    checkdoc-ispell-start
C-c ? SPC  checkdoc-rogue-spaces
C-c ? X    checkdoc-ispell-defun
C-c ? `    checkdoc-continue
C-c ? b    checkdoc-current-buffer
C-c ? c    checkdoc-comments
C-c ? d    checkdoc
C-c ? e    checkdoc-eval-current-buffer
C-c ? m    checkdoc-message-text
C-c ? s    checkdoc-start
C-c ? x    checkdoc-defun
C-c ? ~    checkdoc-ispell-continue
C-x `      checkdoc-continue

Documentation

Keymap used to override evaluation key-bindings for documentation checking.

Probably introduced at or before Emacs version 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
;;; Minor Mode specification
;;

(defvar checkdoc-minor-mode-map
  (let ((map (make-sparse-keymap))
	(pmap (make-sparse-keymap)))
    ;; Override some bindings
    (define-key map "\C-\M-x" 'checkdoc-eval-defun)
    (define-key map "\C-x`" 'checkdoc-continue)
    (define-key map [menu-bar emacs-lisp eval-buffer]
      'checkdoc-eval-current-buffer)
    ;; Add some new bindings under C-c ?
    (define-key pmap "x" 'checkdoc-defun)
    (define-key pmap "X" 'checkdoc-ispell-defun)
    (define-key pmap "`" 'checkdoc-continue)
    (define-key pmap "~" 'checkdoc-ispell-continue)
    (define-key pmap "s" 'checkdoc-start)
    (define-key pmap "S" 'checkdoc-ispell-start)
    (define-key pmap "d" 'checkdoc)
    (define-key pmap "D" 'checkdoc-ispell)
    (define-key pmap "b" 'checkdoc-current-buffer)
    (define-key pmap "B" 'checkdoc-ispell-current-buffer)
    (define-key pmap "e" 'checkdoc-eval-current-buffer)
    (define-key pmap "m" 'checkdoc-message-text)
    (define-key pmap "M" 'checkdoc-ispell-message-text)
    (define-key pmap "c" 'checkdoc-comments)
    (define-key pmap "C" 'checkdoc-ispell-comments)
    (define-key pmap " " 'checkdoc-rogue-spaces)

    ;; bind our submap into map
    (define-key map "\C-c?" pmap)
    map)
  "Keymap used to override evaluation key-bindings for documentation checking.")