Mercurial > emacs
comparison admin/admin.el @ 95943:4e411168887d
(set-version): Add doc/misc/faq.texi.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sun, 15 Jun 2008 02:39:07 +0000 |
parents | e6db9ee945b8 |
children | 95f012d6bfcd |
comparison
equal
deleted
inserted
replaced
95942:267a8bdcab21 | 95943:4e411168887d |
---|---|
77 (rx (and "EMACSVER" (1+ space) | 77 (rx (and "EMACSVER" (1+ space) |
78 (submatch (1+ (in "0-9.")))))) | 78 (submatch (1+ (in "0-9.")))))) |
79 (set-version-in-file root "doc/man/emacs.1" version | 79 (set-version-in-file root "doc/man/emacs.1" version |
80 (rx (and ".TH EMACS" (1+ not-newline) | 80 (rx (and ".TH EMACS" (1+ not-newline) |
81 "GNU Emacs" (1+ space) | 81 "GNU Emacs" (1+ space) |
82 (submatch (1+ (in "0-9.")))))) | |
83 (set-version-in-file root "doc/misc/faq.texi" version | |
84 (rx (and "VER" (1+ space) | |
82 (submatch (1+ (in "0-9.")))))) | 85 (submatch (1+ (in "0-9.")))))) |
83 (set-version-in-file root "lib-src/makefile.w32-in" version | 86 (set-version-in-file root "lib-src/makefile.w32-in" version |
84 (rx (and "VERSION" (0+ space) "=" (0+ space) | 87 (rx (and "VERSION" (0+ space) "=" (0+ space) |
85 (submatch (1+ (in "0-9.")))))) | 88 (submatch (1+ (in "0-9.")))))) |
86 ;; nt/emacs.rc also contains the version number, but in an awkward | 89 ;; nt/emacs.rc also contains the version number, but in an awkward |