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;
|
dict = 0;
|
||||||
|
|
||||||
for(i=0; dicts[i].name; i++){
|
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];
|
dict = &dicts[i];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
@ -171,7 +171,7 @@ usage(void)
|
||||||
Bprint(bout, "dictionaries (brackets mark dictionaries not present on this system):\n");
|
Bprint(bout, "dictionaries (brackets mark dictionaries not present on this system):\n");
|
||||||
for(i = 0; dicts[i].name; i++){
|
for(i = 0; dicts[i].name; i++){
|
||||||
a = b = "";
|
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 = "[";
|
a = "[";
|
||||||
b = "]";
|
b = "]";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue