mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
Add some missing unsharps.
This commit is contained in:
parent
6fe3e93032
commit
85117729d0
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ main(int argc, char **argv)
|
|||
dict = 0;
|
||||
|
||||
for(i=0; dicts[i].name; i++){
|
||||
if(access(dicts[i].path, 0)>=0 && access(dicts[i].indexpath, 0)>=0){
|
||||
if(access(unsharp(dicts[i].path), 0)>=0 && access(unsharp(dicts[i].indexpath), 0)>=0){
|
||||
dict = &dicts[i];
|
||||
break;
|
||||
}
|
||||
|
@ -171,7 +171,7 @@ usage(void)
|
|||
Bprint(bout, "dictionaries (brackets mark dictionaries not present on this system):\n");
|
||||
for(i = 0; dicts[i].name; i++){
|
||||
a = b = "";
|
||||
if(access(dicts[i].path, 0)<0 || access(dicts[i].indexpath, 0)<0){
|
||||
if(access(unsharp(dicts[i].path), 0)<0 || access(unsharp(dicts[i].indexpath), 0)<0){
|
||||
a = "[";
|
||||
b = "]";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue