Changeset 40358d2 for app/src/lem/common_lem.cc
- Timestamp:
- 05/08/08 16:38:00 (17 years ago)
- Branches:
- master, help
- Children:
- 9b57c4d
- Parents:
- 0e3df7e
- git-author:
- obrebski <obrebski@…> (05/08/08 16:38:00)
- git-committer:
- obrebski <obrebski@…> (05/08/08 16:38:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/lem/common_lem.cc
r25ae32e r40358d2 11 11 { 12 12 expand_path(args->dictionary_arg,dictionary); 13 if(file_accessible(dictionary)!=0) 14 { 15 fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary); 16 exit(1); 17 } 13 18 } 14 19 else if (args->dictionary_home_given && args->language_given) … … 17 22 expand_path(args->dictionary_home_arg, buf); 18 23 sprintf(dictionary,"%s/%s/lem.bin",buf,args->language_arg); 24 if(file_accessible(dictionary)!=0) 25 { 26 fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary); 27 exit(1); 28 } 19 29 } 20 30 }
Note: See TracChangeset
for help on using the changeset viewer.