# HG changeset patch # User Richard M. Stallman # Date 739132528 0 # Node ID 7542bfc0a920200a672bd706f118dc168e2482ef # Parent 0761060b16a38fa991c23a103b30f84704dbe29f (byte-compile-insert-header): Fix backwards test of byte-compile-compatibility. diff -r 0761060b16a3 -r 7542bfc0a920 lisp/emacs-lisp/bytecomp.el --- 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.