diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/admin/admin.el b/admin/admin.el index d6c702a3bdf..f5e9646054e 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -109,15 +109,15 @@ Root must be the root of an Emacs source tree." | |||
| 109 | (set-version-in-file root "nt/makefile.w32-in" version | 109 | (set-version-in-file root "nt/makefile.w32-in" version |
| 110 | (rx (and "VERSION" (0+ space) "=" (0+ space) | 110 | (rx (and "VERSION" (0+ space) "=" (0+ space) |
| 111 | (submatch (1+ (in "0-9.")))))) | 111 | (submatch (1+ (in "0-9.")))))) |
| 112 | ;; Major version only. | 112 | ;; Major version only. |
| 113 | (when (string-match "\\([0-9]\\{2,\\}\\)" version) | 113 | (when (string-match "\\([0-9]\\{2,\\}\\)" version) |
| 114 | (setq version (match-string 1 version)) | 114 | (setq version (match-string 1 version)) |
| 115 | (set-version-in-file root "src/msdos.c" version | 115 | (set-version-in-file root "src/msdos.c" version |
| 116 | (rx (and "Vwindow_system_version" (1+ not-newline) | 116 | (rx (and "Vwindow_system_version" (1+ not-newline) |
| 117 | ?\( (submatch (1+ (in "0-9"))) ?\)))) | 117 | ?\( (submatch (1+ (in "0-9"))) ?\)))) |
| 118 | (set-version-in-file root "etc/refcards/ru-refcard.tex" version | 118 | (set-version-in-file root "etc/refcards/ru-refcard.tex" version |
| 119 | "\\\\newcommand{\\\\versionemacs}\\[0\\]\ | 119 | "\\\\newcommand{\\\\versionemacs}\\[0\\]\ |
| 120 | {\\([0-9]\\{2,\\}\\)}.+%.+version of Emacs"))) | 120 | {\\([0-9]\\{2,\\}\\)}.+%.+version of Emacs")) |
| 121 | (message "Setting version numbers...done")) | 121 | (message "Setting version numbers...done")) |
| 122 | 122 | ||
| 123 | ;; Note this makes some assumptions about form of short copyright. | 123 | ;; Note this makes some assumptions about form of short copyright. |