Function: help-fns--edit-value-mode

help-fns--edit-value-mode is a byte-compiled function defined in help-fns.el.gz.

Signature

(help-fns--edit-value-mode)

Documentation

Major mode derived from emacs-lisp-mode by define-derived-mode.

It inherits all of the parent's attributes, but has its own keymap, abbrev table and syntax table:

  help-fns--edit-value-mode-map,
help-fns--edit-value-mode-abbrev-table and help-fns--edit-value-mode-syntax-table

which more-or-less shadow emacs-lisp-mode's corresponding tables.

In addition to any hooks its parent mode might have run, this mode runs the hook help-fns--edit-value-mode-hook, as the final or penultimate step during initialization.

C-c C-c help-fns-edit-mode-done
C-c C-k help-fns-edit-mode-cancel

Source Code

;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(define-derived-mode help-fns--edit-value-mode emacs-lisp-mode "Elisp"
  :interactive nil)