diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2020-01-23 17:55:02 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-01-23 17:55:02 +0100 |
commit | c4687d920db081f29e93cca8156793d545a827e2 (patch) | |
tree | e6e7550635bacd2eae8f2140d231e548234640c0 /lisp/emacs-lisp | |
parent | a15a0cf69ede156df6f3441ffbfb1cb9be24909b (diff) | |
download | emacs-c4687d920db081f29e93cca8156793d545a827e2.tar.gz emacs-c4687d920db081f29e93cca8156793d545a827e2.tar.bz2 emacs-c4687d920db081f29e93cca8156793d545a827e2.zip |
Remove irrelevant info from .elc headers
* lisp/emacs-lisp/bytecomp.el (byte-compile-insert-header): Don't
insert information on ancient Emacs in bytecode headers. (Bug#39233)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 234ee34f477..89831823975 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2214,11 +2214,7 @@ Call from the source buffer." ".\n" (if dynamic ";;; Function definitions are lazy-loaded.\n" "") - "\n;;; This file uses " - (if dynamic-docstrings - "dynamic docstrings, first added in Emacs 19.29" - "opcodes that do not exist in Emacs 18") - ".\n\n" + "\n" ;; Note that byte-compile-fix-header may change this. ";;; This file does not contain utf-8 non-ASCII characters,\n" ";;; and so can be loaded in Emacs versions earlier than 23.\n\n" |