emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r115767: Enable ns-use-srgb-colorspace by default


From: Julien Danjou
Subject: [Emacs-diffs] trunk r115767: Enable ns-use-srgb-colorspace by default
Date: Fri, 27 Dec 2013 10:47:07 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115767
revision-id: address@hidden
parent: address@hidden
committer: Julien Danjou <address@hidden>
branch nick: master
timestamp: Fri 2013-12-27 11:43:11 +0100
message:
  Enable ns-use-srgb-colorspace by default
  
  See thread
  https://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00706.html
  
  * nsterm.m (syms_of_nsterm): Enable ns-use-srgb-colorspace by
  default.
modified:
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/nsterm.m                   nsterm.m-20091113204419-o5vbwnq5f7feedwu-8747
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-12-27 03:38:26 +0000
+++ b/etc/NEWS  2013-12-27 10:43:11 +0000
@@ -1288,7 +1288,7 @@
 native is the default.
 
 ** OSX >= 10.7 can use sRGB colorspace.
-Customize `ns-use-srgb-colorspace' to change style.  nil is the default.
+Customize `ns-use-srgb-colorspace' to change style.  t is the default.
 Note: This does not apply to images.
 
 

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-12-27 03:38:26 +0000
+++ b/src/ChangeLog     2013-12-27 10:43:11 +0000
@@ -1,3 +1,8 @@
+2013-12-27  Steve Purcell  <address@hidden>  (tiny change)
+
+       * nsterm.m (syms_of_nsterm): Enable ns-use-srgb-colorspace by
+       default.
+
 2013-12-27  Chong Yidong  <address@hidden>
 
        * data.c (Fsymbol_function): Doc fix.

=== modified file 'src/nsterm.m'
--- a/src/nsterm.m      2013-12-21 16:11:55 +0000
+++ b/src/nsterm.m      2013-12-27 10:43:11 +0000
@@ -7647,8 +7647,8 @@
   DEFVAR_BOOL ("ns-use-srgb-colorspace", ns_use_srgb_colorspace,
      doc: /*Non-nil means to use sRGB colorspace on OSX >= 10.7.
 Note that this does not apply to images.            
-This variable is ignored on OSX < 10.7 and GNUStep.  Default is nil. */);
-  ns_use_srgb_colorspace = NO;
+This variable is ignored on OSX < 10.7 and GNUStep.  Default is t. */);
+  ns_use_srgb_colorspace = YES;
 
   /* TODO: move to common code */
   DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,


reply via email to

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