diff options
| author | Dave Love | 2002-06-27 19:19:47 +0000 |
|---|---|---|
| committer | Dave Love | 2002-06-27 19:19:47 +0000 |
| commit | 9e55828966f0ebdc8cf8f122621ad186ae9ccc7d (patch) | |
| tree | 5d45c23356f2bf3f38e3dbb3438cf6069c4e0989 | |
| parent | a6dfc99b260b176870f896c8acd40860ae27a00c (diff) | |
| download | emacs-9e55828966f0ebdc8cf8f122621ad186ae9ccc7d.tar.gz emacs-9e55828966f0ebdc8cf8f122621ad186ae9ccc7d.zip | |
(byte-compile-insert-header): Fix typo.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bf889c2dd99..c34263b6087 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2002-06-27 Dave Love <fx@gnu.org> | 1 | 2002-06-27 Dave Love <fx@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-insert-header): Fix typo. | ||
| 4 | |||
| 3 | * international/mule.el (load-with-code-conversion): Fix | 5 | * international/mule.el (load-with-code-conversion): Fix |
| 4 | coding-system-type test. | 6 | coding-system-type test. |
| 5 | 7 | ||
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5f629b80ebb..d884d2e62de 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | ;;; This version incorporates changes up to version 2.10 of the | 11 | ;;; This version incorporates changes up to version 2.10 of the |
| 12 | ;;; Zawinski-Furuseth compiler. | 12 | ;;; Zawinski-Furuseth compiler. |
| 13 | (defconst byte-compile-version "$Revision: 2.94 $") | 13 | (defconst byte-compile-version "$Revision$") |
| 14 | 14 | ||
| 15 | ;; This file is part of GNU Emacs. | 15 | ;; This file is part of GNU Emacs. |
| 16 | 16 | ||
| @@ -1615,7 +1615,7 @@ With argument, insert value in current buffer after the form." | |||
| 1615 | 1615 | ||
| 1616 | (insert | 1616 | (insert |
| 1617 | ";ELC" | 1617 | ";ELC" |
| 1618 | (if (byte-compile-version-cond byte-compile-compatibility) 18 21) | 1618 | (if (byte-compile-version-cond byte-compile-compatibility) 18 22) |
| 1619 | "\000\000\000\n" | 1619 | "\000\000\000\n" |
| 1620 | ) | 1620 | ) |
| 1621 | (insert ";;; Compiled by " | 1621 | (insert ";;; Compiled by " |