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
6d099b2e
Commit
6d099b2e
authored
Nov 22, 2014
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* admin/admin.el: Fix paren typo in previous.
parent
8662e9d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
admin/admin.el
admin/admin.el
+9
-9
No files found.
admin/admin.el
View file @
6d099b2e
...
...
@@ -109,15 +109,15 @@ Root must be the root of an Emacs source tree."
(
set-version-in-file
root
"nt/makefile.w32-in"
version
(
rx
(
and
"VERSION"
(
0+
space
)
"="
(
0+
space
)
(
submatch
(
1+
(
in
"0-9."
))))))
;; Major version only.
(
when
(
string-match
"\\([0-9]\\{2,\\}\\)"
version
)
(
setq
version
(
match-string
1
version
))
(
set-version-in-file
root
"src/msdos.c"
version
(
rx
(
and
"Vwindow_system_version"
(
1+
not-newline
)
?\(
(
submatch
(
1+
(
in
"0-9"
)))
?\)
)))
(
set-version-in-file
root
"etc/refcards/ru-refcard.tex"
version
"
\\\\newcommand{\\\\versionemacs}\\[0\\]
\
{\\
(
[0-9]\\{2,\\}\\
)
}.+%.+version
of
Emacs
"))
)
;; Major version only.
(
when
(
string-match
"\\([0-9]\\{2,\\}\\)"
version
)
(
setq
version
(
match-string
1
version
))
(
set-version-in-file
root
"src/msdos.c"
version
(
rx
(
and
"Vwindow_system_version"
(
1+
not-newline
)
?\(
(
submatch
(
1+
(
in
"0-9"
)))
?\)
)))
(
set-version-in-file
root
"etc/refcards/ru-refcard.tex"
version
"
\\\\newcommand{\\\\versionemacs}\\[0\\]
\
{\\
(
[0-9]\\{2,\\}\\
)
}.+%.+version
of
Emacs
"))
(message "
Setting
version
numbers...done
"))
;; Note this makes some assumptions about form of short copyright.
...
...
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