Variable: emacs-lisp-byte-code-comment-re

emacs-lisp-byte-code-comment-re is a variable defined in elisp-mode.el.gz.

Value

"\\(#\\)@\\([0-9]+\\) \\(?:[^(]\\|([^\"]\\)"

Documentation

Regular expression matching a dynamic doc string comment.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
;;; Emacs Lisp Byte-Code mode

(eval-and-compile
  (defconst emacs-lisp-byte-code-comment-re
    (concat "\\(#\\)@\\([0-9]+\\) "
            ;; Make sure it's a docstring and not a lazy-loaded byte-code.
            "\\(?:[^(]\\|([^\"]\\)")
    "Regular expression matching a dynamic doc string comment."))