Changeset 19760ef for app/src/gue
- Timestamp:
- 05/15/08 21:55:02 (17 years ago)
- Branches:
- master, help
- Children:
- b012e2a
- Parents:
- 6ac84d8
- git-author:
- obrebski <obrebski@…> (05/15/08 21:55:02)
- git-committer:
- obrebski <obrebski@…> (05/15/08 21:55:02)
- Location:
- app/src/gue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/gue/cmdline_guess.ggo
r8d3e6ab r19760ef 8 8 option "dictionary" d "File with dictionary information" string typestr="filename" default="gue.bin" no 9 9 option "per-info" v "Display performance information" flag off 10 option "weights" w "Print weights" flag off hidden10 option "weights" w "Print weights" flag off 11 11 option "no-uppercase" - "Do not process form containing uppercase letters" flag off 12 12 -
app/src/gue/common_guess.cc
r6ac84d8 r19760ef 8 8 char dictionary[255]; 9 9 bool per_info=false; 10 bool weights= true;10 bool weights=false; 11 11 12 12 void process_guess_options(gengetopt_args_info* args) … … 56 56 57 57 if(args->weights_given) 58 weights= false;58 weights=true; 59 59 60 60 }
Note: See TracChangeset
for help on using the changeset viewer.