emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r118097: Update doc to say Mac OS X 10.6 or later no


From: Paul Eggert
Subject: [Emacs-diffs] trunk r118097: Update doc to say Mac OS X 10.6 or later now required.
Date: Sun, 12 Oct 2014 14:57:03 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 118097
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sun 2014-10-12 07:56:58 -0700
message:
  Update doc to say Mac OS X 10.6 or later now required.
  
  * doc/emacs/macos.texi (Mac OS / GNUstep, Mac / GNUstep Basics)
  (Mac / GNUstep Customization):
  * nextstep/README: Mac OS X 10.6 or later now required.
modified:
  doc/emacs/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-6227
  doc/emacs/macos.texi           macos.texi-20091113204419-o5vbwnq5f7feedwu-6261
  nextstep/ChangeLog             changelog-20091113204419-o5vbwnq5f7feedwu-8711
  nextstep/README                readme-20091113204419-o5vbwnq5f7feedwu-8750
  src/macfont.m                  macfont.m-20130915173740-04lgloz0557bz98l-2
  src/nsterm.m                   nsterm.m-20091113204419-o5vbwnq5f7feedwu-8747
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2014-10-09 04:23:09 +0000
+++ b/doc/emacs/ChangeLog       2014-10-12 14:56:58 +0000
@@ -1,3 +1,8 @@
+2014-10-12  Paul Eggert  <address@hidden>
+
+       * macos.texi (Mac OS / GNUstep, Mac / GNUstep Basics)
+       (Mac / GNUstep Customization): Mac OS X 10.6 or later now required.
+
 2014-10-09  Glenn Morris  <address@hidden>
 
        * package.texi (Package Menu): The package list was changed to not

=== modified file 'doc/emacs/macos.texi'
--- a/doc/emacs/macos.texi      2014-05-29 06:15:48 +0000
+++ b/doc/emacs/macos.texi      2014-10-12 14:56:58 +0000
@@ -12,7 +12,7 @@
 Mac OS X with native window system support.  On Mac OS X, Emacs can be
 built either without window system support, with X11, or with the
 Cocoa interface; this section only applies to the Cocoa build.  This
-does not support versions of Mac OS X earlier than 10.4.
+does not support versions of Mac OS X earlier than 10.6.
 
   For various historical and technical reasons, Emacs uses the term
 @samp{Nextstep} internally, instead of ``Cocoa'' or ``Mac OS X''; for
@@ -84,7 +84,7 @@
 they would when launched from the shell.
 
 For the PATH and MANPATH variables, a system-wide method
-of setting PATH is recommended on Mac OS X 10.5 and later, using the
+of setting PATH is recommended on Mac OS X, using the
 @file{/etc/paths} files and the @file{/etc/paths.d} directory.
 
 @node Mac / GNUstep Customization
@@ -118,7 +118,7 @@
 @kbd{M-x list-faces-display}.
 
 @cindex Core Text, on Mac OS X
-In Mac OS X 10.5 and later, Emacs uses a Core Text based font backend
+In Mac OS X, Emacs uses a Core Text based font backend
 by default.  If you prefer the older font style, enter the following
 at the command-line before starting Emacs:
 

=== modified file 'nextstep/ChangeLog'
--- a/nextstep/ChangeLog        2014-06-25 06:39:03 +0000
+++ b/nextstep/ChangeLog        2014-10-12 14:56:58 +0000
@@ -1,3 +1,7 @@
+2014-10-12  Paul Eggert  <address@hidden>
+
+       * README: Mac OS X 10.6 or later now required.
+
 2014-06-25  Glenn Morris  <address@hidden>
 
        * Makefile.in (${ns_appbindir}): New.

=== modified file 'nextstep/README'
--- a/nextstep/README   2014-01-01 07:43:34 +0000
+++ b/nextstep/README   2014-10-12 14:56:58 +0000
@@ -12,7 +12,7 @@
 
 Requirements
 ------------
-MacOS X 10.4 or later
+Mac OS X 10.6 or later
 
 - or -
 

=== modified file 'src/macfont.m'
--- a/src/macfont.m     2014-10-12 08:35:50 +0000
+++ b/src/macfont.m     2014-10-12 14:56:58 +0000
@@ -40,7 +40,7 @@
 
 static struct font_driver macfont_driver;
 
-/* Core Text, for Mac OS X 10.5 and later.  */
+/* Core Text, for Mac OS X.  */
 static Lisp_Object Qmac_ct;
 
 static double mac_ctfont_get_advance_width_for_glyph (CTFontRef, CGGlyph);
@@ -2706,7 +2706,7 @@
                                   s->width, FONT_HEIGHT (s->font));
   else
     background_rect = CGRectNull;
-  
+
   text_position = CGPointMake (x, -y);
   glyphs = xmalloc (sizeof (CGGlyph) * len);
   {
@@ -2735,7 +2735,7 @@
 
   if (!CGRectIsNull (background_rect))
     {
-      if (s->hl == DRAW_MOUSE_FACE) 
+      if (s->hl == DRAW_MOUSE_FACE)
         {
           face = FACE_FROM_ID (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
           if (!face)
@@ -2744,7 +2744,7 @@
       CG_SET_FILL_COLOR_WITH_FACE_BACKGROUND (context, face, f);
       CGContextFillRects (context, &background_rect, 1);
     }
-  
+
   if (macfont_info->cgfont)
     {
       CGAffineTransform atfm;

=== modified file 'src/nsterm.m'
--- a/src/nsterm.m      2014-10-12 08:35:50 +0000
+++ b/src/nsterm.m      2014-10-12 14:56:58 +0000
@@ -3445,7 +3445,7 @@
 }
 #endif
 
-/* GNUstep and OSX <= 10.4 does not have cancelTracking.  */
+/* GNUstep does not have cancelTracking.  */
 #ifdef NS_IMPL_COCOA
 /* Check if menu open should be canceled or continued as normal.  */
 void
@@ -4518,7 +4518,7 @@
 #define NSAppKitVersionNumber10_8 1187
 #endif
 
-  if (NSAppKitVersionNumber <= NSAppKitVersionNumber10_8) 
+  if (NSAppKitVersionNumber <= NSAppKitVersionNumber10_8)
     {
       [super run];
       return;
@@ -7065,7 +7065,7 @@
 #endif
 #endif
 
-  for (i = 0; i < nr_screens; ++i) 
+  for (i = 0; i < nr_screens; ++i)
     {
       NSScreen *s = [screens objectAtIndex: i];
       NSRect scrrect = [s frame];


reply via email to

[Prev in Thread] Current Thread [Next in Thread]