Variable: bytecomp-version-regexp
bytecomp-version-regexp is a variable defined in lread.c.
Value
"^;;;.\\(?:in Emacs version\\|bytecomp version FSF\\)"
Documentation
Regular expression matching safe to load compiled Lisp files.
When Emacs loads a compiled Lisp file, it reads the first 512 bytes from the file, and matches them against this regular expression. When the regular expression matches, the file is considered to be safe to load.
Source Code
// Defined in /usr/src/emacs/src/lread.c
DEFVAR_LISP ("bytecomp-version-regexp", Vbytecomp_version_regexp,
doc: /* Regular expression matching safe to load compiled Lisp files.
When Emacs loads a compiled Lisp file, it reads the first 512 bytes
from the file, and matches them against this regular expression.
When the regular expression matches, the file is considered to be safe
to load. */);