mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
Fix from rob.
This commit is contained in:
parent
60f5a99860
commit
e915fe7c58
2 changed files with 16 additions and 17 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue