root/branches/3.00/pkginfo/migemo/cmigemo-u.patch

Revision 808, 1.0 kB (checked in by kose, 3 years ago)

* migemo/cmigemo-u.patch: New file. patch of -u (same -s).

  • Property svn:executable set to *
  • src/main.c

    old new  
    6060\n\ 
    6161OPTIONS:\n\ 
    6262  -d --dict <dict>      Use a file <dict> for dictionary.\n\ 
    63   -s --subdict <dict>  Sub dictionary files. (MAX %d times)\n
     63  -s (-u) --subdict <dict>     Sub dictionary files. (MAX %d times)\n
    6464  -q --quiet            Show no message except results.\n\ 
    6565  -v --vim              Use vim style regexp.\n\ 
    6666  -e --emacs            Use emacs style regexp.\n\ 
     
    101101        else if (argv[1] && (!strcmp("--dict", *argv) || !strcmp("-d", *argv))) 
    102102            dict = *++argv; 
    103103        else if (argv[1] 
    104                 && (!strcmp("--subdict", *argv) || !strcmp("-s", *argv)) 
     104                && (!strcmp("--subdict", *argv) || !strcmp("-s", *argv) 
     105                    || !strcmp("-u", *argv)) 
    105106                && subdict_count < MIGEMO_SUBDICT_MAX) 
    106107            subdict[subdict_count++] = *++argv; 
    107108        else if (argv[1] && (!strcmp("--word", *argv) || !strcmp("-w", *argv))) 
Note: See TracBrowser for help on using the browser.