Mercurial > emacs
changeset 3455:7542bfc0a920
(byte-compile-insert-header): Fix backwards test
of byte-compile-compatibility.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 03 Jun 1993 18:35:28 +0000 |
parents | 0761060b16a3 |
children | 57089987a2de |
files | lisp/emacs-lisp/bytecomp.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el Thu Jun 03 18:32:26 1993 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Thu Jun 03 18:35:28 1993 +0000 @@ -1321,7 +1321,7 @@ (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.