URI: 
       tdevdraw: enable retina behavior by default on OS X - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 4eac378eba7b7376621bfb57bb282957ef714628
   DIR parent 79555a9987d62cd15b77df2b4328e963583a160e
  HTML Author: Russ Cox <rsc@swtch.com>
       Date:   Tue, 17 Feb 2015 14:45:46 -0500
       
       devdraw: enable retina behavior by default on OS X
       
       Change-Id: I243a1fe3f9ec0841570c4cd69c02be9cfd9ade50
       Reviewed-on: https://plan9port-review.googlesource.com/1172
       Reviewed-by: Russ Cox <rsc@swtch.com>
       
       Diffstat:
         M src/cmd/devdraw/cocoa-screen.m      |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/src/cmd/devdraw/cocoa-screen.m b/src/cmd/devdraw/cocoa-screen.m
       t@@ -41,10 +41,10 @@ int usebigarrow = 0;
        static void setprocname(const char*);
        
        /*
       - * By default, devdraw ignores retina displays. A non-zero evironment variable
       - * |devdrawretina| will override this.
       + * By default, devdraw uses retina displays.
       + * Set devdrawretina=0 in the environment to override.
         */
       -int devdrawretina = 0;
       +int devdrawretina = 1;
        
        void
        usage(void)