Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
24bbe01e
Commit
24bbe01e
authored
Dec 05, 2007
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(set-version): Handle configure.in. Adapt for doc/ directory layout
for manuals.
parent
3728bf03
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
admin/ChangeLog
admin/ChangeLog
+5
-0
admin/admin.el
admin/admin.el
+6
-2
No files found.
admin/ChangeLog
View file @
24bbe01e
2007-12-05 Glenn Morris <rgm@gnu.org>
* admin.el (set-version): Handle configure.in. Adapt for doc/
directory layout for manuals.
2007-12-01 Reiner Steib <Reiner.Steib@gmx.de>
* FOR-RELEASE: Remove Gnus send mail problem. Other Gnus bugs
...
...
admin/admin.el
View file @
24bbe01e
...
...
@@ -68,10 +68,14 @@ Root must be the root of an Emacs source tree."
(
set-version-in-file
root
"README"
version
(
rx
(
and
"version"
(
1+
space
)
(
submatch
(
1+
(
in
"0-9."
))))))
(
set-version-in-file
root
"man/emacs.texi"
version
(
set-version-in-file
root
"configure.in"
version
(
rx
(
and
"AC_INIT"
(
1+
(
not
(
in
?,
)))
?,
(
0+
space
)
(
submatch
(
1+
(
in
"0-9."
))))))
(
set-version-in-file
root
"doc/emacs/emacs.texi"
version
(
rx
(
and
"EMACSVER"
(
1+
space
)
(
submatch
(
1+
(
in
"0-9."
))))))
(
set-version-in-file
root
"lispref/elisp.texi"
version
(
set-version-in-file
root
"
doc/
lispref/elisp.texi"
version
(
rx
(
and
"EMACSVER"
(
1+
space
)
(
submatch
(
1+
(
in
"0-9."
))))))
(
set-version-in-file
root
"lib-src/makefile.w32-in"
version
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment