Function: derived-mode-map-name

derived-mode-map-name is a byte-compiled function defined in derived.el.gz.

Signature

(derived-mode-map-name MODE)

Documentation

Construct a map name based on the symbol MODE.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/derived.el.gz
(defsubst derived-mode-map-name (mode)
  "Construct a map name based on the symbol MODE."
  (intern (concat (symbol-name mode) "-map")))