]> git.eshelyaron.com Git - emacs.git/commitdiff
* nsfns.m (ns_set_background_color): Remove code duplication.
authorSeiji Zenitani <zenitani@mac.com>
Sun, 7 Dec 2008 05:00:54 +0000 (05:00 +0000)
committerSeiji Zenitani <zenitani@mac.com>
Sun, 7 Dec 2008 05:00:54 +0000 (05:00 +0000)
src/ChangeLog
src/nsfns.m

index 3b40c99fa8811a371945cf945c7cb8eac70f7691..8672bb2b240234b5fe04824b7f4f8e0370c41b25 100644 (file)
@@ -1,3 +1,8 @@
+2008-12-07  Seiji Zenitani  <zenitani@mac.com>
+
+       * nsfns.m (ns_set_background_color): Remove code duplication.
+       It was a substite for face-transparency on OS X 10.3.
+
 2008-12-06  Chong Yidong  <cyd@stupidchicken.com>
 
        * coding.c (make_conversion_work_buffer): Disable buffer
index df5c7e13daf41bc92992f60aafdec6bb514ca73e..0f7b6318e630951eda08f0856132c8c66f34814e 100644 (file)
@@ -389,14 +389,6 @@ ns_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
       [[view window] setBackgroundColor: col];
       alpha = [col alphaComponent];
 
-#ifdef NS_IMPL_COCOA
-      /* the alpha code below only works on 10.4, so we need to do something
-         else (albeit less good) otherwise.
-         Check NSApplication.h for useful NSAppKitVersionNumber values. */
-      if (NSAppKitVersionNumber < 744.0)
-          [[view window] setAlphaValue: alpha];
-#endif
-
       if (alpha != 1.0)
           [[view window] setOpaque: NO];
       else