diff options
author | Xue Fuqiao <xfq.free@gmail.com> | 2013-12-25 10:18:43 +0800 |
---|---|---|
committer | Xue Fuqiao <xfq.free@gmail.com> | 2013-12-25 10:18:43 +0800 |
commit | 3a79600aa78d4d148c4c6b6a0a7a5ce625c582dc (patch) | |
tree | fbaf575af33aab9ea57e8e3848616c94bbf8e034 /admin | |
parent | 89c868adeef16e407569a3d607dd64ccadba17c7 (diff) | |
download | emacs-3a79600aa78d4d148c4c6b6a0a7a5ce625c582dc.tar.gz |
Doc fixes (index and comment).
Diffstat (limited to 'admin')
-rw-r--r-- | admin/admin.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/admin/admin.el b/admin/admin.el index baf18992953..5e5e57cb3ce 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -75,6 +75,9 @@ Root must be the root of an Emacs source tree." (interactive "DEmacs root directory: \nsVersion number: ") (unless (file-exists-p (expand-file-name "src/emacs.c" root)) (user-error "%s doesn't seem to be the root of an Emacs source tree" root)) + ;; There's also a "version 3" (standing for GPLv3) at the end of + ;; `README', but since `set-version-in-file' only replaces the first + ;; occurence, it won't be replaced. (set-version-in-file root "README" version (rx (and "version" (1+ space) (submatch (1+ (in "0-9.")))))) |