diff options
| -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." | |||
| 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. |