diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-06-03 18:35:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-06-03 18:35:28 +0000 |
| commit | e237de5cfd83f91737daca875acd4162388a4121 (patch) | |
| tree | 28180e180b192e7411bcce8d33655853e3cd9990 /lisp/emacs-lisp | |
| parent | 679aee027e2904b36b042cc3baa846a5d3aba585 (diff) | |
| download | emacs-e237de5cfd83f91737daca875acd4162388a4121.tar.gz | |
(byte-compile-insert-header): Fix backwards test
of byte-compile-compatibility.
Diffstat (limited to 'lisp/emacs-lisp')
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 93641897318..ce72c041551 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1321,7 +1321,7 @@ With argument, insert value in current buffer after the form." (if (byte-compile-version-cond byte-compile-compatibility) "; compiled with Emacs 18 compatibility.\n" ".\n")) - (if (byte-compile-version-cond byte-compile-compatibility) + (if (not (byte-compile-version-cond byte-compile-compatibility)) (insert ";;; this file uses opcodes which do not exist in Emacs 18.\n" ;; Have to check if emacs-version is bound so that this works ;; in files loaded early in loadup.el. |
