Mercurial > emacs
comparison lisp/version.el @ 90104:a01e7a9f1659
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-14
Update unicode-branch version numbers and ChangeLog file names
2005-02-12 Miles Bader <miles@gnu.org>
* etc/TODO, etc/PROBLEMS, etc/NEWS: Replace references to Emacs version "22"
with "23".
2005-02-12 Miles Bader <miles@gnu.org>
* lisp/version.el (emacs-version): Change to "23.0.0".
* lisp/descr-text.el (describe-char-unidata-list):
Replace references to Emacs version "22" with "23".
* lisp/emacs-lisp/bytecomp.el (byte-compile-fix-header)
(byte-compile-insert-header): Likewise.
* lisp/international/mule.el (charset-list, set-coding-priority)
(ignore-relative-composition): Likewise.
* lisp/international/mule-util.el (detect-coding-with-priority): Likewise.
* lisp/international/mule-diag.el: Likewise.
* lisp/international/mule-cmds.el (language-info-custom-alist): Likewise.
* lisp/international/codepage.el (codepage-setup): Likewise.
2005-02-13 Miles Bader <miles@gnu.org>
Rename unicode-branch-specific ChangeLog files to
"ChangeLog.unicode" from "ChangeLog.22"
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 14 Feb 2005 03:40:07 +0000 |
parents | 4c90ffeb71c5 |
children | f9a65d7ebd29 |
comparison
equal
deleted
inserted
replaced
90103:3ebd9bdb4fe5 | 90104:a01e7a9f1659 |
---|---|
1 ;;; version.el --- record version number of Emacs -*- no-byte-compile: t -*- | 1 ;;; version.el --- record version number of Emacs -*- no-byte-compile: t -*- |
2 | 2 |
3 ;;; Copyright (C) 1985, 1992, 1994, 1995, 1999, 2000, 2001 | 3 ;;; Copyright (C) 1985, 1992, 1994, 1995, 1999, 2000, 2001, 2005 |
4 ;;; Free Software Foundation, Inc. | 4 ;;; Free Software Foundation, Inc. |
5 | 5 |
6 ;; Maintainer: FSF | 6 ;; Maintainer: FSF |
7 ;; Keywords: internal | 7 ;; Keywords: internal |
8 | 8 |
25 | 25 |
26 ;;; Commentary: | 26 ;;; Commentary: |
27 | 27 |
28 ;;; Code: | 28 ;;; Code: |
29 | 29 |
30 (defconst emacs-version "22.0.0" "\ | 30 (defconst emacs-version "23.0.0" "\ |
31 Version numbers of this version of Emacs.") | 31 Version numbers of this version of Emacs.") |
32 | 32 |
33 (defconst emacs-major-version | 33 (defconst emacs-major-version |
34 (progn (string-match "^[0-9]+" emacs-version) | 34 (progn (string-match "^[0-9]+" emacs-version) |
35 (string-to-int (match-string 0 emacs-version))) | 35 (string-to-int (match-string 0 emacs-version))) |