Variable: Info-edit-mode-map

Info-edit-mode-map is a variable defined in info-edit.el.gz.

This variable is obsolete since 24.4; editing Info nodes by hand is not recommended.

Value

C-M-i    ispell-complete-word
C-c C-c  Info-cease-edit

Documentation

Local keymap used within e command of Info.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/info-edit.el.gz
(defvar Info-edit-mode-map (let ((map (make-sparse-keymap)))
                             (set-keymap-parent map text-mode-map)
                             (define-key map "\C-c\C-c" #'Info-cease-edit)
                             map)
  "Local keymap used within `e' command of Info.")