Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8de9005d
Commit
8de9005d
authored
Sep 25, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Plain Diff
Merge from trunk.
parents
856bbc81
ab22a8a1
Changes
19
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
1928 additions
and
1408 deletions
+1928
-1408
README
README
+1
-1
admin/ChangeLog
admin/ChangeLog
+5
-0
admin/admin.el
admin/admin.el
+2
-2
admin/make-tarball.txt
admin/make-tarball.txt
+13
-24
configure.in
configure.in
+1
-1
doc/emacs/emacsver.texi
doc/emacs/emacsver.texi
+1
-1
doc/man/emacs.1
doc/man/emacs.1
+1
-1
etc/AUTHORS
etc/AUTHORS
+1007
-527
lisp/ldefs-boot.el
lisp/ldefs-boot.el
+878
-832
msdos/sed2v2.inp
msdos/sed2v2.inp
+1
-1
nextstep/Cocoa/Emacs.base/Contents/Info.plist
nextstep/Cocoa/Emacs.base/Contents/Info.plist
+2
-2
nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings
...s.base/Contents/Resources/English.lproj/InfoPlist.strings
+2
-2
nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop
nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop
+1
-1
nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist
nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist
+2
-2
nt/config.nt
nt/config.nt
+1
-1
nt/emacs.rc
nt/emacs.rc
+4
-4
nt/emacsclient.rc
nt/emacsclient.rc
+4
-4
nt/makefile.w32-in
nt/makefile.w32-in
+1
-1
src/ChangeLog.11
src/ChangeLog.11
+1
-1
No files found.
README
View file @
8de9005d
...
...
@@ -2,7 +2,7 @@ Copyright (C) 2001-2011 Free Software Foundation, Inc.
See the end of the file for license conditions.
This directory tree holds version 24.0.
5
0 of GNU Emacs, the extensible,
This directory tree holds version 24.0.
9
0 of GNU Emacs, the extensible,
customizable, self-documenting real-time display editor.
The file INSTALL in this directory says how to build and install GNU
...
...
admin/ChangeLog
View file @
8de9005d
2011-09-26 Chong Yidong <cyd@stupidchicken.com>
* admin.el (set-version): Fix regexps for config.nt and
sed2v2.inp.
2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
Merge from gnulib (Bug#9169).
...
...
admin/admin.el
View file @
8de9005d
...
...
@@ -75,11 +75,11 @@ Root must be the root of an Emacs source tree."
(
submatch
(
1+
(
in
"0-9."
))))))
(
set-version-in-file
root
"nt/config.nt"
version
(
rx
(
and
bol
"#"
(
0+
blank
)
"define"
(
1+
blank
)
"VERSION"
(
1+
blank
)
"VERSION"
(
1+
blank
)
"\""
(
submatch
(
1+
(
in
"0-9."
))))))
(
set-version-in-file
root
"msdos/sed2v2.inp"
version
(
rx
(
and
bol
"/^#undef "
(
1+
not-newline
)
"define VERSION"
(
1+
space
)
"define VERSION"
(
1+
space
)
"\""
(
submatch
(
1+
(
in
"0-9."
))))))
(
set-version-in-file
root
"nt/makefile.w32-in"
version
(
rx
(
and
"VERSION"
(
0+
space
)
"="
(
0+
space
)
...
...
admin/make-tarball.txt
View file @
8de9005d
...
...
@@ -62,37 +62,26 @@ For each step, check for possible errors.
number of the old Emacs to __, do the same with the new log and do
M-x ediff. Especially check that Info files aren't built.
10. cd EMACS_ROOT_DIR;
cvs
tag TAG
10. cd EMACS_ROOT_DIR;
bzr
tag TAG
TAG is EMACS_PRETEST_XX_YY_ZZZ for a pretest, EMACS_XX_YY for a
release.
Shortly before the release, cut the branch with the following commands:
cvs rtag EMACS_`NUMBER'_BASE
cvs rtag -b EMACS_`NUMBER'_RC -r EMACS_`NUMBER'_BASE
where `NUMBER' is the major version number of the release. This
makes it easier to see what changes have been applied to the
branch with:
cvs diff -r EMACS_`NUMBER'_BASE -r EMACS_`NUMBER'_RC
or merge changes back to the trunk with "cvs update -j", if
necessary.
After doing this, increase the version number on the trunk as per
step 4.
Also, open a Savannah support request asking for commits to the
new branch to be sent to the emacs-diffs mailing list (by default,
the list normally only gets commits to the trunk).
Shortly before the release, cut the version branch also, and open
a Savannah support request asking for commits to the new branch to
be sent to the emacs-diffs mailing list (by default, the list
normally only gets commits to the trunk).
11. Now you should upload the files to the GNU ftp server. In order to
do that, you must be registered as an Emacs maintainer and have your
GPG key acknowledged by the ftp people. Mail <ftp-upload@gnu.org>
for instructions. Once you are there, for each file FILE to be
released, create a detached GPG binary signature and a clearsigned
directive file like this:
for instructions.
You can use the gnupload script to upload each FILE, like this:
gnupload --to alpha.gnu.org:emacs/pretest FILE (for a pretest)
gnupload --to ftp.gnu.org:emacs FILE (for a release)
Instead of using gnupload, for each FILE, create a detached GPG
binary signature and a clearsigned directive file like this:
gpg -b FILE
echo directory: emacs/pretest > FILE.directive (for a pretest)
echo directory: emacs > FILE.directive (for a release)
...
...
configure.in
View file @
8de9005d
...
...
@@ -22,7 +22,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.65)
AC_INIT(emacs, 24.0.
5
0)
AC_INIT(emacs, 24.0.
9
0)
AC_CONFIG_HEADER(src/config.h:src/config.in)
AC_CONFIG_SRCDIR(src/lisp.h)
AC_CONFIG_AUX_DIR(build-aux)
...
...
doc/emacs/emacsver.texi
View file @
8de9005d
@c It would be nicer to generate this using configure and @version@.
@c However, that would mean emacsver.texi would always be newer
@c then the info files in release tarfiles.
@set EMACSVER 24.0.
5
0
@set EMACSVER 24.0.
9
0
doc/man/emacs.1
View file @
8de9005d
.\" See section COPYING for copyright and redistribution information.
.TH EMACS 1 "2007 April 13" "GNU Emacs 24.0.
5
0"
.TH EMACS 1 "2007 April 13" "GNU Emacs 24.0.
9
0"
.
.
.SH NAME
...
...
etc/AUTHORS
View file @
8de9005d
This diff is collapsed.
Click to expand it.
lisp/ldefs-boot.el
View file @
8de9005d
This diff is collapsed.
Click to expand it.
msdos/sed2v2.inp
View file @
8de9005d
...
...
@@ -58,7 +58,7 @@
/^#undef PACKAGE_STRING/s/^.*$/#define PACKAGE_STRING ""/
/^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/
/^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION ""/
/^#undef VERSION/s/^.*$/#define VERSION "24.0.
5
0"/
/^#undef VERSION/s/^.*$/#define VERSION "24.0.
9
0"/
/^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/
/^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/
/^#undef HAVE_DIRENT_H/s/^.*$/#define HAVE_DIRENT_H 1/
...
...
nextstep/Cocoa/Emacs.base/Contents/Info.plist
View file @
8de9005d
...
...
@@ -553,7 +553,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
<
k
e
y
>
CFBundleExecutable
<
/k
e
y
>
<
string
>
Emacs
<
/string
>
<
k
e
y
>
CFBundleGetInfoString
<
/k
e
y
>
<
string
>
Emacs
24.0.
5
0
Copyright
(
C
)
2011
Free
Software
Foundation
,
Inc.
<
/string
>
<
string
>
Emacs
24.0.
9
0
Copyright
(
C
)
2011
Free
Software
Foundation
,
Inc.
<
/string
>
<
k
e
y
>
CFBundleIconFile
<
/k
e
y
>
<
string
>
Emacs.icns
<
/string
>
<
k
e
y
>
CFBundleIdentifier
<
/k
e
y
>
...
...
@@ -566,7 +566,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
<
string
>
APPL
<
/string
>
<
!--
This
shoul
d be
th
e e
m
ac
s
v
e
rsion
num
be
r.
--
>
<
k
e
y
>
CFBundleShortVersionString
<
/k
e
y
>
<
string
>
24.0.
5
0
<
/string
>
<
string
>
24.0.
9
0
<
/string
>
<
k
e
y
>
CFBundleSignature
<
/k
e
y
>
<
string
>
EMAx
<
/string
>
<
!--
This
SHOUL
D be a b
uil
d
num
be
r.
--
>
...
...
nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings
View file @
8de9005d
/* Localized versions of Info.plist keys */
CFBundleName = "Emacs";
CFBundleShortVersionString = "Version 24.0.
5
0";
CFBundleGetInfoString = "Emacs version 24.0.
5
0, NS Windowing";
CFBundleShortVersionString = "Version 24.0.
9
0";
CFBundleGetInfoString = "Emacs version 24.0.
9
0, NS Windowing";
NSHumanReadableCopyright = "Copyright (C) 2011 Free Software Foundation, Inc.";
nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop
View file @
8de9005d
[Desktop Entry]
Encoding=UTF-8
Type=Application
Version=24.0.
5
0
Version=24.0.
9
0
Categories=GNUstep
Name=Emacs
Comment=GNU Emacs for NeXT/Open/GNUstep and OS X
...
...
nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist
View file @
8de9005d
...
...
@@ -2,7 +2,7 @@
ApplicationDescription
=
"GNU Emacs for GNUstep / OS X"
;
ApplicationIcon
=
emacs.tiff
;
ApplicationName
=
Emacs
;
ApplicationRelease
=
"24.0.
5
0"
;
ApplicationRelease
=
"24.0.
9
0"
;
Authors
=
(
"Adrian Robert (GNUstep)"
,
"Christophe de Dinechin (MacOS X)"
,
...
...
@@ -13,7 +13,7 @@
);
Copyright
=
"Copyright (C) 2011 Free Software Foundation, Inc."
;
CopyrightDescription
=
"Released under the GNU General Public License Version 3 or later"
;
FullVersionID
=
"Emacs 24.0.
5
0, NS Windowing"
;
FullVersionID
=
"Emacs 24.0.
9
0, NS Windowing"
;
NSExecutable
=
Emacs
;
NSIcon
=
emacs.tiff
;
NSPrincipalClass
=
NSApplication
;
...
...
nt/config.nt
View file @
8de9005d
...
...
@@ -317,7 +317,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#define PACKAGE "emacs"
/* Version number of package */
#define VERSION "24.0.
5
0"
#define VERSION "24.0.
9
0"
/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
...
...
nt/emacs.rc
View file @
8de9005d
...
...
@@ -7,8 +7,8 @@ Emacs ICON icons\emacs.ico
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION 24,0,
5
0,0
PRODUCTVERSION 24,0,
5
0,0
FILEVERSION 24,0,
9
0,0
PRODUCTVERSION 24,0,
9
0,0
FILEFLAGSMASK 0x3FL
#ifdef EMACSDEBUG
FILEFLAGS 0x1L
...
...
@@ -25,12 +25,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Free Software Foundation\0"
VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0"
VALUE "FileVersion", "24, 0,
5
0, 0\0"
VALUE "FileVersion", "24, 0,
9
0, 0\0"
VALUE "InternalName", "Emacs\0"
VALUE "LegalCopyright", "Copyright (C) 2001-2011\0"
VALUE "OriginalFilename", "emacs.exe"
VALUE "ProductName", "Emacs\0"
VALUE "ProductVersion", "24, 0,
5
0, 0\0"
VALUE "ProductVersion", "24, 0,
9
0, 0\0"
VALUE "OLESelfRegister", "\0"
END
END
...
...
nt/emacsclient.rc
View file @
8de9005d
...
...
@@ -5,8 +5,8 @@ Emacs ICON icons\emacs.ico
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION 24,0,
5
0,0
PRODUCTVERSION 24,0,
5
0,0
FILEVERSION 24,0,
9
0,0
PRODUCTVERSION 24,0,
9
0,0
FILEFLAGSMASK 0x3FL
#ifdef EMACSDEBUG
FILEFLAGS 0x1L
...
...
@@ -23,12 +23,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Free Software Foundation\0"
VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0"
VALUE "FileVersion", "24, 0,
5
0, 0\0"
VALUE "FileVersion", "24, 0,
9
0, 0\0"
VALUE "InternalName", "EmacsClient\0"
VALUE "LegalCopyright", "Copyright (C) 2001-2011\0"
VALUE "OriginalFilename", "emacsclientw.exe"
VALUE "ProductName", "EmacsClient\0"
VALUE "ProductVersion", "24, 0,
5
0, 0\0"
VALUE "ProductVersion", "24, 0,
9
0, 0\0"
VALUE "OLESelfRegister", "\0"
END
END
...
...
nt/makefile.w32-in
View file @
8de9005d
...
...
@@ -22,7 +22,7 @@
# FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out
# (and remove or replace this comment).
VERSION
=
24.0.
5
0
VERSION
=
24.0.
9
0
TMP_DIST_DIR
=
emacs-
$(VERSION)
...
...
src/ChangeLog.11
View file @
8de9005d
...
...
@@ -2927,7 +2927,7 @@
* nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
don't change the method signature, change the return.
2010-11-04
I
smail D
o
nmez <ismail@namtrac.org> (tiny change)
2010-11-04
İ
smail D
ö
nmez <ismail@namtrac.org> (tiny change)
* nsfont.m (nsfont_draw)
* nsimage.m (EmacsImage-setXBMColor:)
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