~ubuntu-branches/ubuntu/utopic/texlive-bin/utopic

« back to all changes in this revision

Viewing changes to texk/makejvf/main.c

  • Committer: Package Import Robot
  • Author(s): Norbert Preining
  • Date: 2012-05-07 10:47:49 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20120507104749-p00ot5sajjbkp1hp
Tags: 2011.20120507-1
* new upstream checkout: uptex 1.10
* drop patches for config file inclusion in (x)dvipdfmx, included upstream
* add man page for etex
* include pmpost patches and build it
* adapt/unfuzzify patches for current sources
* disable mtx building, we have prepmx package in Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
 
175
175
        if (ucs) {
176
176
                ib=0;
177
 
                for (i=0;i<(useset3+1);i++)
 
177
                for (i=0;i<(useset3*2+1);i++)
178
178
                        for (j=0;j<65536;j++) {
179
 
                                ch=i*2*65536+j;
 
179
                                ch=i*65536+j;
180
180
                                if (search_cjk_entry(&ib,ch,ucs))
181
181
                                        writevfu(ch,vfp);
182
182
                        }
193
193
 
194
194
void usage(void)
195
195
{
196
 
        fputs2("MAKEJVF ver.1.1a-u1.00 -- make Japanese VF file.\n", stderr);
 
196
        fputs2("MAKEJVF ver.1.1a-u1.10 -- make Japanese VF file.\n", stderr);
197
197
        fputs2("%% makejvf [<options>] <TFMfile> <PSfontTFM>\n", stderr);
198
198
        fputs2("options:\n", stderr);
199
199
        fputs2("-C           Ĺ�Υ⡼��\n", stderr);
208
208
        fputs2("-u <Charset> UCS mode\n", stderr);
209
209
        fputs2("             <Charset> gb : GB,  cns : CNS,  ks : KS\n", stderr);
210
210
        fputs2("                       jis : JIS,  jisq : JIS quote only\n", stderr);
211
 
        fputs2("-J <TFMfile> JIS encoded PS font TFM name for quote, double quote with UCS mode\n", stderr);
212
 
        fputs2("-U <TFMfile> UCS encoded PS font TFM name for quote, double quote with UCS mode\n", stderr);
 
211
        fputs2("-J <TFMfile> JIS encoded PS font TFM name for quote, double quote (with UCS mode)\n", stderr);
 
212
        fputs2("-U <TFMfile> UCS encoded PS font TFM name for quote, double quote (with UCS mode)\n", stderr);
213
213
        fputs2("-3           use set3 (with UCS mode)\n", stderr);
214
214
        fputs2("-H           use half-width katakana (with UCS mode)\n", stderr);
215
215
        fputs2("-i           font ID from No.0\n", stderr);