emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117588: Reinstate removed code.


From: Jan D.
Subject: [Emacs-diffs] trunk r117588: Reinstate removed code.
Date: Sun, 27 Jul 2014 14:45:32 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117588
revision-id: address@hidden
parent: address@hidden
committer: Jan D. <address@hidden>
branch nick: trunk
timestamp: Sun 2014-07-27 16:45:26 +0200
message:
  Reinstate removed code.
  
  * nsterm.m (applicationDidFinishLaunching antialiasThresholdDidChange):
  Reinstate code removed by the prevoius commit to this file.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/nsterm.m                   nsterm.m-20091113204419-o5vbwnq5f7feedwu-8747
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-07-27 13:21:30 +0000
+++ b/src/ChangeLog     2014-07-27 14:45:26 +0000
@@ -1,3 +1,8 @@
+2014-07-27  Jan Djärv  <address@hidden>
+
+       * nsterm.m (applicationDidFinishLaunching antialiasThresholdDidChange):
+       Reinstate code removed by the prevoius commit to this file.
+
 2014-07-27  Martin Rudalics  <address@hidden>
 
        * buffer.h (struct buffer): New fields scroll_bar_height and

=== modified file 'src/nsterm.m'
--- a/src/nsterm.m      2014-07-27 13:21:30 +0000
+++ b/src/nsterm.m      2014-07-27 14:45:26 +0000
@@ -4687,9 +4687,30 @@
   ((EmacsApp *)self)->applicationDidFinishLaunchingCalled = YES;
 #endif
   [NSApp setServicesProvider: NSApp];
+
+  [self antialiasThresholdDidChange:nil];
+#ifdef NS_IMPL_COCOA
+#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
+  [[NSNotificationCenter defaultCenter]
+    addObserver:self
+       selector:@selector(antialiasThresholdDidChange:)
+          name:NSAntialiasThresholdChangedNotification
+        object:nil];
+#endif
+#endif
+
   ns_send_appdefined (-2);
 }
 
+- (void)antialiasThresholdDidChange:(NSNotification *)notification
+{
+#ifdef NS_IMPL_COCOA
+#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
+  macfont_update_antialias_threshold ();
+#endif
+#endif
+}
+
 
 /* Termination sequences:
     C-x C-c:


reply via email to

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