summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorSeiji Zenitani <zenitani@mac.com>2009-08-06 00:07:12 +0000
committerSeiji Zenitani <zenitani@mac.com>2009-08-06 00:07:12 +0000
commit8c914fdb1828b576dd66fd4ef546c32d62252c06 (patch)
treea0d61d4f6ad6b39a19e5ec0953c0265c31ef2085 /lisp/emacs-lisp
parentf19a0f5b11e41baf46ce11fd447744ceb97ef754 (diff)
downloademacs-8c914fdb1828b576dd66fd4ef546c32d62252c06.tar.gz
emacs-8c914fdb1828b576dd66fd4ef546c32d62252c06.tar.bz2
emacs-8c914fdb1828b576dd66fd4ef546c32d62252c06.zip
fix message: new multibyte format requires 23
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index f0edda4ee6e..196b1af0e3a 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1971,8 +1971,8 @@ and will be removed soon. See (elisp)Backquote in the manual."))
(beginning-of-line)
(point)))
(insert ";;; This file contains utf-8 non-ASCII characters\n"
- ";;; and therefore cannot be loaded into Emacs 21 or earlier.\n")
- ;; Replace "19" or "19.29" with "22", twice.
+ ";;; and therefore cannot be loaded into Emacs 22 or earlier.\n")
+ ;; Replace "19" or "19.29" with "23", twice.
(re-search-forward "19\\(\\.[0-9]+\\)")
(replace-match "23")
(re-search-forward "19\\(\\.[0-9]+\\)")