URI: 
       tFix from rob. - 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 e915fe7c58cd2eefc8a876f40e4df3e55e6abc5f
   DIR parent 60f5a9986075e5d65e86d9f0e610b81221773f8d
  HTML Author: wkj <devnull@localhost>
       Date:   Thu, 24 Jun 2004 00:36:58 +0000
       
       Fix from rob.
       
       Diffstat:
         M lib/gv.resource                     |      31 +++++++++++++++----------------
         M src/libdraw/x11-init.c              |       2 +-
       
       2 files changed, 16 insertions(+), 17 deletions(-)
       ---
   DIR diff --git a/lib/gv.resource b/lib/gv.resource
       t@@ -1,16 +1,15 @@
       -GV.scales:              Natural size,   1.000,  screen  \n\
       -                              Pixel based,    1.000,  pixel   \n\
       -                              0.100,          0.100           \n\
       -                              0.125,          0.125           \n\
       -                              0.250,          0.250           \n\
       -                              0.500,          0.500           \n\
       -                              0.707,          0.707           \n\
       -                              1.000,          1.000           \n\
       -                              1.414,          1.530           \n\
       -                              2.000,          2.000           \n\
       -                              2.400,          2.750           \n\
       -                              4.000,          4.000           \n\
       -                              8.000,          8.000           \n\
       -                              10.00,          10.00
       -
       -GV.reverseScrolling: True
       +       GV.scaleBase:               1
       +       GV.scales:               Natural size,   1.000,  screen  \n\
       +                               Pixel based,    1.000,  pixel   \n\
       +                               0.100,               0.100               \n\
       +                               0.125,               0.125               \n\
       +                               0.250,               0.250               \n\
       +                               0.500,               0.500               \n\
       +                               0.707,               0.707               \n\
       +                               1.000,               1.000               \n\
       +                               1.414,               1.414               \n\
       +                               2.828,               2.828               \n\
       +                               3.000,               3.000               \n\
       +                               4.000,               4.000               \n\
       +                               8.000,               8.000               \n\
       +                               10.00,               10.00
   DIR diff --git a/src/libdraw/x11-init.c b/src/libdraw/x11-init.c
       t@@ -349,7 +349,7 @@ xattach(char *label)
                                home = getenv("home");
                                if(home == nil)
                                        home = getenv("HOME");
       -                        if(home!=nil && (file=smprint("%s/.Xdefaults")) != nil){
       +                        if(home!=nil && (file=smprint("%s/.Xdefaults", home)) != nil){
                                        XrmCombineFileDatabase(file, &database, False);
                                        free(file);
                                }