Function: elisp-byte-code-mode
elisp-byte-code-mode is an interactive and byte-compiled function
defined in elisp-mode.el.gz.
Signature
(elisp-byte-code-mode)
Documentation
Major mode for *.elc files.
In addition to any hooks its parent mode emacs-lisp-mode might have
run, this mode runs the hook elisp-byte-code-mode-hook, as the final
or penultimate step during initialization.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
;;;###autoload
(define-derived-mode elisp-byte-code-mode emacs-lisp-mode
"Elisp-Byte-Code"
"Major mode for *.elc files."
;; TODO: Add way to disassemble byte-code under point.
(setq-local open-paren-in-column-0-is-defun-start nil)
(setq-local syntax-propertize-function
#'elisp-byte-code-syntax-propertize))