*** empty log message ***
[bpt/emacs.git] / lisp / grow-vers.el
CommitLineData
1a06eabd
ER
1;;; grow-vers.el --- increment Emacs version number
2
e5167999
ER
3;; Maintainer: FSF
4;; Last-Modified: 31 Oct 1989
fd7fa35a 5;; Keywords: internal
e5167999 6
0d20f9a0
JB
7;; Copyright (C) 1985 Free Software Foundation, Inc.
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
e5167999 13;; the Free Software Foundation; either version 2, or (at your option)
0d20f9a0
JB
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
e5167999
ER
25;;; Commentary:
26
27;; Load this file to add a new level (starting at zero)
28;; to the Emacs version number recorded in version.el.
29
30;;; Code:
0d20f9a0
JB
31
32(insert-file-contents "lisp/version.el")
33
34(re-search-forward "emacs-version \"[0-9.]*")
35(insert ".0")
36
37;; Delete the share-link with the current version
38;; so that we do not alter the current version.
39(delete-file "lisp/version.el")
40(write-region (point-min) (point-max) "lisp/version.el" nil 'nomsg)
1a06eabd
ER
41
42;;; grow-vers.el ends here