aboutsummaryrefslogtreecommitdiffstats
path: root/mac
diff options
context:
space:
mode:
Diffstat (limited to 'mac')
-rw-r--r--mac/ChangeLog4
-rw-r--r--mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings4
-rwxr-xr-xmac/make-package2
-rw-r--r--mac/src/Emacs.r6
4 files changed, 10 insertions, 6 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog
index c128ae837e0..d427a71e5c5 100644
--- a/mac/ChangeLog
+++ b/mac/ChangeLog
@@ -1,3 +1,7 @@
12007-04-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * make-package (compver): Don't hardcode processor type.
4
12007-03-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 52007-03-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 6
3 * makefile.MPW (dired.c.x, editfns.c.x, fileio.c.x, lread.c.x) 7 * makefile.MPW (dired.c.x, editfns.c.x, fileio.c.x, lread.c.x)
diff --git a/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings b/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings
index c84e392b177..c9f8190c883 100644
--- a/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings
+++ b/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings
@@ -1,5 +1,5 @@
1/* Localized versions of Info.plist keys */ 1/* Localized versions of Info.plist keys */
2 2
3CFBundleName = "Emacs"; 3CFBundleName = "Emacs";
4CFBundleShortVersionString = "22.0.96"; 4CFBundleShortVersionString = "22.0.98";
5CFBundleGetInfoString = "22.0.96, Copyright (C) 2007 Free Software Foundation, Inc."; 5CFBundleGetInfoString = "22.0.98, Copyright (C) 2007 Free Software Foundation, Inc.";
diff --git a/mac/make-package b/mac/make-package
index a783ef40a50..1db34d2046c 100755
--- a/mac/make-package
+++ b/mac/make-package
@@ -325,7 +325,7 @@ if test "$with_app" == "yes"; then
325 fi 325 fi
326fi 326fi
327 327
328compver=powerpc-apple-darwin`uname -r` 328compver=`uname -p`-apple-darwin`uname -r`
329 329
330if test "$self_contained" = "yes"; then 330if test "$self_contained" = "yes"; then
331 # Move shared files down to Resources directory 331 # Move shared files down to Resources directory
diff --git a/mac/src/Emacs.r b/mac/src/Emacs.r
index f48652dd08d..0a17e379168 100644
--- a/mac/src/Emacs.r
+++ b/mac/src/Emacs.r
@@ -221,10 +221,10 @@ resource 'vers' (1) {
221 0x22, /* Major revision in BCD */ 221 0x22, /* Major revision in BCD */
222 0x0, /* Minor revision in BCD */ 222 0x0, /* Minor revision in BCD */
223 alpha, /* development, alpha, beta, or final (release) */ 223 alpha, /* development, alpha, beta, or final (release) */
224 96, /* Non-final release # */ 224 98, /* Non-final release # */
225 0, /* Region code */ 225 0, /* Region code */
226 "22.0.96", /* Short version number */ 226 "22.0.98", /* Short version number */
227 "22.0.96, Copyright \0xa9 2007 " 227 "22.0.98, Copyright \0xa9 2007 "
228 "Free Software Foundation, Inc." /* Long version number */ 228 "Free Software Foundation, Inc." /* Long version number */
229}; 229};
230 230