aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-03 18:35:28 +0000
committerRichard M. Stallman1993-06-03 18:35:28 +0000
commite237de5cfd83f91737daca875acd4162388a4121 (patch)
tree28180e180b192e7411bcce8d33655853e3cd9990
parent679aee027e2904b36b042cc3baa846a5d3aba585 (diff)
downloademacs-e237de5cfd83f91737daca875acd4162388a4121.tar.gz
emacs-e237de5cfd83f91737daca875acd4162388a4121.zip
(byte-compile-insert-header): Fix backwards test
of byte-compile-compatibility.
-rw-r--r--lisp/emacs-lisp/bytecomp.el2
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."
1321 (if (byte-compile-version-cond byte-compile-compatibility) 1321 (if (byte-compile-version-cond byte-compile-compatibility)
1322 "; compiled with Emacs 18 compatibility.\n" 1322 "; compiled with Emacs 18 compatibility.\n"
1323 ".\n")) 1323 ".\n"))
1324 (if (byte-compile-version-cond byte-compile-compatibility) 1324 (if (not (byte-compile-version-cond byte-compile-compatibility))
1325 (insert ";;; this file uses opcodes which do not exist in Emacs 18.\n" 1325 (insert ";;; this file uses opcodes which do not exist in Emacs 18.\n"
1326 ;; Have to check if emacs-version is bound so that this works 1326 ;; Have to check if emacs-version is bound so that this works
1327 ;; in files loaded early in loadup.el. 1327 ;; in files loaded early in loadup.el.