Function: Info-edit-mode
Info-edit-mode is an interactive and byte-compiled function defined in
info-edit.el.gz.
Signature
(Info-edit-mode)
Documentation
Major mode for editing the contents of an Info node.
Like text mode with the addition of Info-cease-edit
which returns to Info mode for browsing.
In addition to any hooks its parent mode text-mode might have run,
this mode runs the hook Info-edit-mode-hook, as the final or
penultimate step during initialization.
C-M-i ispell-complete-word
C-c C-c Info-cease-edit
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/info-edit.el.gz
(define-derived-mode Info-edit-mode text-mode "Info Edit"
"Major mode for editing the contents of an Info node.
Like text mode with the addition of `Info-cease-edit'
which returns to Info mode for browsing."
(setq buffer-read-only nil)
(force-mode-line-update)
(buffer-enable-undo (current-buffer)))